“Python z plikiem” Kod odpowiedzi

Python z plikiem

with open(filename, 'r') as f:
Steve-Tech

z otwartym Pythonem

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

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

z otwartym

with open('output.txt', 'w') as file:  # Use file to refer to the file object

    file.write('Hi there!')
Relieved Ray

Odpowiedzi podobne do “Python z plikiem”

Pytania podobne do “Python z plikiem”

Więcej pokrewnych odpowiedzi na “Python z plikiem” w Python

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

Przeglądaj inne języki kodu