4 lines
73 B
Python
4 lines
73 B
Python
file = open('Numbers.txt', 'w')
|
|
file.write('1, 2, 3, 4, 5')
|
|
file.close()
|