Curso_Intensivo_de_PYTHON/chapter_10/write_message.py
2023-06-02 17:22:53 +02:00

5 lines
220 B
Python

filename = 'programming.txt'
with open(filename, 'a') as file_object:
file_object.write("I also love finding meaning in large datasets.\n")
file_object.write("I love creating apps that can run in a browser.\n")