python-CSD-kursu/python-temel/f.write.py
2023-08-24 09:45:28 +03:00

5 lines
92 B
Python

f = open('test.txt', 'w')
f.write('This is a test')
f.write('Yes this is a test')
f.close()