私は大きなファイルを持っており、その軽量部分を投稿するだけです:
World population in thousands
Source: United Nations, DEMOBASE
Country/ISO country code/UN Code/Population 1950/Population 2012
----------------------------------------------------------------
Afghanistan/AF/4/8151/33397
Albania/AL/8/1215/3227
Algeria/DZ/12/8753/36486
American Samoa/AS/16/19/71
Andorra/AD/20/6/88
私の質問は、国に関する情報が始まる前の情報だけである、最初の 5 行をどのように読むかです。
私は次のようなものを試しました:
file=open("wordpop.txt","r")
for i in range[0:5]:
rows = file.read()
print(rows)