PYTHON_SOLVES Telegram 54
## Файлы: чтение и запись

Тема:
Как работать с текстовыми файлами.

# Запись в файл
with open("example.txt", "w") as file:
file.write("Привет, мир!\n")
file.write("Python — крутой!")

# Чтение файла
with open("example.txt", "r") as file:
content = file.read()
print(content)


Полезные советы:

* with автоматически закрывает файл.
* "w" — перезаписывает, "a" — добавляет, "r" — только чтение.

#азы



tgoop.com/python_solves/54
Create:
Last Update:

## Файлы: чтение и запись

Тема:
Как работать с текстовыми файлами.

# Запись в файл
with open("example.txt", "w") as file:
file.write("Привет, мир!\n")
file.write("Python — крутой!")

# Чтение файла
with open("example.txt", "r") as file:
content = file.read()
print(content)


Полезные советы:

* with автоматически закрывает файл.
* "w" — перезаписывает, "a" — добавляет, "r" — только чтение.

#азы

BY Python решает 🐍


Share with your friend now:
tgoop.com/python_solves/54

View MORE
Open in Telegram


Telegram News

Date: |

Polls When choosing the right name for your Telegram channel, use the language of your target audience. The name must sum up the essence of your channel in 1-3 words. If you’re planning to expand your Telegram audience, it makes sense to incorporate keywords into your name. The optimal dimension of the avatar on Telegram is 512px by 512px, and it’s recommended to use PNG format to deliver an unpixelated avatar. For crypto enthusiasts, there was the “gm” app, a self-described “meme app” which only allowed users to greet each other with “gm,” or “good morning,” a common acronym thrown around on Crypto Twitter and Discord. But the gm app was shut down back in September after a hacker reportedly gained access to user data.
from us


Telegram Python решает 🐍
FROM American