/
diev
/
swaroopch-byte-of-python
Обзор
Документация
Войти
/
diev
/
swaroopch-byte-of-python
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
programs/io_using_file.py
28 строк
570 B
Swaroop C H
Add programs folder
19 янв 2016, 18:47
19 янв 2016, 18:47
ed99d1b
Код
Авторство
О чём код?
poem = '''\ Programming is fun When the work is done if you wanna make your work also fun: use Python! ''' # Open for 'w'riting f = open('poem.txt', 'w') # Write text to file f.write(poem) # Close the file f.close() # If no mode is specified, # 'r'ead mode is assumed by default f = open('poem.txt') while True: line = f.readline() # Zero length indicates EOF if len(line) == 0: break # The `line` already has a newline # at the end of each line # since it is reading from a file. print(line, end='') # close the file f.close()