コンテンツにスキップ

python テキストファイルを作成する#

def write_text_file(path: str, text: str):
    with open(path,"w") as f:
        f.write(text)

References#

Tags#