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