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

7 lines
158 B
Python
Raw Normal View History

2023-08-24 11:56:46 +03:00
with open('test.txt', 'w') as f:
while True:
s = input('Bir yazı giriniz:')
if s == 'çık':
break
f.write(s + '\n')