Tulis daftar ke file menggunakan fungsi writelines ()

# Program to write multiple lines to text file using writelines() function
with open("python.txt", "w") as file:
    content = ["Hello\n", "Welcome to Python Tutorial\n", "Cheers \n" ]
    file.writelines(content)
    file.close()

# Program to read the entire file (absolute path) using read() function
with open("C:/Projects/Tryouts/python.txt", "r") as file:
    content = file.read()
    print(content)
    file.close()
Gorgeous Gazelle