StudyRepo_Synergy/part2_OOP/lesson5/file_write.py

7 lines
220 B
Python
Raw Normal View History

2023-12-03 16:26:19 +03:00
while text:=input('Введите строку или оставьте пустым для выхода\n$> '):
if text:
with open('user_input.txt', mode='a') as f:
f.write(text + '\n')