“Записать в файл python 3” Ответ

Записать в файл python 3

with open(filename, 'a') as out:
    out.write(var + '\n')
Expensive Earthworm

Записать в файл python 3

with open(filename, 'a') as f:
    print(var, file=f)
Expensive Earthworm

с открытым как файл python

>>> with open('workfile') as f:
...     read_data = f.read()

>>> # We can check that the file has been automatically closed.
>>> f.closed
True
Powerful Platypus

Ответы похожие на “Записать в файл python 3”

Вопросы похожие на “Записать в файл python 3”

Больше похожих ответов на “Записать в файл python 3” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования