f.write example

This commit is contained in:
Mert Gör 🇹🇷 2023-08-24 09:45:28 +03:00
parent c88cb6a6a8
commit f0f88aef3b
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
2 changed files with 5 additions and 1 deletions

4
python-temel/f.write.py Normal file
View File

@ -0,0 +1,4 @@
f = open('test.txt', 'w')
f.write('This is a test')
f.write('Yes this is a test')
f.close()

View File

@ -1 +1 @@
this is a test
This is a testYes this is a test