python ファイルの読み込み 4月 07, 2021 path = './ssss.gff'with open(path) as f: for line in f: line = line.rstrip() #改行コードの削除 print(line)