ファイルを開く、読み込む、書き込む f1 = f2 = None try: f1 = open("in.txt", "r") # 読み込みモードでファイルを開く f2 = open("out.txt", "w") # 新規書き込みモードでファイルを開く data = f1.read(100) # 100バイト分のデータを読み込む data += f1.read() # 残りのデータを全て読み込む f2.write(data) # データをファイルに書き込む except IOError, inst: print inst finally: if f1: f1.close() # ファイルを閉じる if f2: f2.close() ファイルを1行ずつ読み込む その1 f = open("in.txt", "r") for line in f: # データを1行ずつ読み込む print li