“Создайте текст в Python, если не существует” Ответ

Создайте текст в Python, если не существует

#It will creates Text file in path directory using name of file.txt
import os

path = 'some/path/to/file.txt'
if not os.path.exists(path):
    with open(path, 'w') as f:
    	f.write('Hello, world')
#==== OR ===
mode = 'a' if os.path.exists(path) else 'w'
with open(path, mode) as f:
    f.write('Hello, world!\n')
visualscrapper

Создайте текст в Python, если не существует

#Updated dec 2020
#It will creates Text file in path directory using name of file.txt
import os

path = 'some/path/to/file.txt'
if not os.path.exists(path):
    with open(path, 'w') as f:
    	f.write('Hello, world')
#==== OR ===
mode = 'a' if os.path.exists(path) else 'w'
with open(path, mode) as f:
    f.write('Hello, world!\n')
Code_Breaker

Ответы похожие на “Создайте текст в Python, если не существует”

Вопросы похожие на “Создайте текст в Python, если не существует”

Больше похожих ответов на “Создайте текст в Python, если не существует” по Python

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

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