Which function is used to write a list of string in a file?
Which function is used to write a list of string in a file? Correct Answer writeline()
With the writeline function you can write a list of strings to a file fh = open(“hello.txt”, “w”) lines_of_text = fh.writelines(lines_of_text).
মোঃ আরিফুল ইসলাম
Feb 20, 2025