python-by-example-150-chall.../challenges105-110/challenge-105.py

4 lines
73 B
Python
Raw Permalink Normal View History

2019-08-01 19:54:19 +08:00
file = open('Numbers.txt', 'w')
file.write('1, 2, 3, 4, 5')
file.close()