“Python Drukuj w pliku” Kod odpowiedzi

Plik Python otwarty

#there are many modes you can open files in. r means read.
file = open('C:\Users\yourname\files\file.txt','r')
text = file.read()

#you can write a string to it, too!
file = open('C:\Users\yourname\files\file.txt','w')
file.write('This is a typical string')

#don't forget to close it afterwards!
file.close()
Dr. Hippo

Python Drukuj w pliku

import sys

print('This message will be displayed on the screen.')

original_stdout = sys.stdout # Save a reference to the original standard output

with open('filename.txt', 'w') as f:
    sys.stdout = f # Change the standard output to the file we created.
    print('This message will be written to a file.')
    sys.stdout = original_stdout # Reset the standard output to its original value
wolf-like_hunter

Python Zapisz wyjście na pliku

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

Odpowiedzi podobne do “Python Drukuj w pliku”

Pytania podobne do “Python Drukuj w pliku”

Więcej pokrewnych odpowiedzi na “Python Drukuj w pliku” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu