“Печать вывода Python для файла” Ответ

python print to file

import sys

# only this print call will write in the file
print("Hello Python!", file=open('output.txt','a'))

# not this one (std output)
print("Not written")

# any further print will be done in the file
sys.stdout = open('output.txt','wt')
print("Hello Python!")
VasteMonde

Печать вывода Python для файла

print("Hello stackoverflow!", file=open("output.txt", "a"))
print("I have a question.", file=open("output.txt", "a"))
Jolly Jellyfish

Python сохранить вывод для файла

with open("output.txt", "a") as f:
    print("Hello StackOverflow!", file=f)
    print("I have a question.", file=f)
Inexpensive Ibis

Ответы похожие на “Печать вывода Python для файла”

Вопросы похожие на “Печать вывода Python для файла”

Больше похожих ответов на “Печать вывода Python для файла” по Python

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

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