python-CSD-kursu/python-temel/f.write.py

5 lines
92 B
Python
Raw Normal View History

2023-08-24 09:45:28 +03:00
f = open('test.txt', 'w')
f.write('This is a test')
f.write('Yes this is a test')
f.close()