Pythonで特定の行を読み込ませる
readlines()[n]
nに読み込みたい行を入れるだけ。
ex)
f = ‘fopeninout.txt’
fp = open(f, ‘r’)
Str = fp.readlines()[1]
fp.close
print Str
fopeninout.txt
test1
test2
test3
readlines()[n]
nに読み込みたい行を入れるだけ。
ex)
f = ‘fopeninout.txt’
fp = open(f, ‘r’)
Str = fp.readlines()[1]
fp.close
print Str
fopeninout.txt
test1
test2
test3