Tulis Baris ke File Teks Menggunakan Fungsi Tulis ()

# Program to write to text file using write() function
with  open("python.txt", "w") as file:
	content = "Hello, Welcome to Python Tutorial !! \n"
	file.write(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