Curso_Intensivo_de_PYTHON/chapter_10/write_message.py

6 lines
220 B
Python
Raw Permalink Normal View History

2023-06-02 17:22:53 +02:00
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")