テキストファイルを入出力する 【Python】
# -*- coding: utf-8 -*- def read1( file1 ): with open( file1, 'r', encoding='utf-8' ) as f1: str1 = f1.read() return str1 def write1( file1, str1 ): with open( file1, 'w' ) as f1: f1.write( str1 ) return 0 を、コピー&ペーストし、改行とインデントを入れてください。コピペ用サンプルはこちらです。