5 lines
220 B
Python
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")
|