Correct syntax of file.writelines() is?
Correct syntax of file.writelines() is? Correct Answer fileObject.writelines(sequence)
The method writelines() writes a sequence of strings to the file. The sequence can be any iterable object producing strings, typically a list of strings. There is no return value. Syntax Following is the syntax for writelines() method: fileObject.writelines( sequence ).
মোঃ আরিফুল ইসলাম
Feb 20, 2025