python ファイルの読み込み

 path = './ssss.gff'

with open(path) as f:

    for line in f:

    line = line.rstrip() #改行コードの削除

    print(line)

アーカイブ

もっと見る