답변:
f = open(fname,'r')
lines = f.readlines()[1:]
f.close()
['a', 'b', 'c'][1:]
=>['b', 'c']
consume()
from more-itertools
을 사용 하는 것은 어떻 습니까? 나는 이것에 대해 stackoverflow.com/questions/11113803에서
f = open(fname).readlines()
firstLine = f.pop(0) #removes the first line
for line in f:
...
여러 헤더 행을 읽는 작업을 일반화하고 가독성을 높이려면 메서드 추출을 사용합니다. coordinates.txt
헤더 정보로 사용하기 위해 처음 세 줄을 토큰 화한다고 가정합니다 .
예
coordinates.txt
---------------
Name,Longitude,Latitude,Elevation, Comments
String, Decimal Deg., Decimal Deg., Meters, String
Euler's Town,7.58857,47.559537,0, "Blah"
Faneuil Hall,-71.054773,42.360217,0
Yellowstone National Park,-110.588455,44.427963,0
그런 방법 추출 지정할 수 있습니다 무엇을 당신이 헤더 정보와 함께 할 (이 예에서 우리는 단순히 쉼표에 따라 헤더 행을 토큰 화하고 목록으로 반환하지만 훨씬 더 많은 일을 할 수있는 공간이있다)하고 싶다.
def __readheader(filehandle, numberheaderlines=1):
"""Reads the specified number of lines and returns the comma-delimited
strings on each line as a list"""
for _ in range(numberheaderlines):
yield map(str.strip, filehandle.readline().strip().split(','))
with open('coordinates.txt', 'r') as rh:
# Single header line
#print next(__readheader(rh))
# Multiple header lines
for headerline in __readheader(rh, numberheaderlines=2):
print headerline # Or do other stuff with headerline tokens
산출
['Name', 'Longitude', 'Latitude', 'Elevation', 'Comments']
['String', 'Decimal Deg.', 'Decimal Deg.', 'Meters', 'String']
coordinates.txt
다른 헤더 라인 이 포함되어 있으면 간단히 변경하십시오 numberheaderlines
. 무엇보다도 무엇 __readheader(rh, numberheaderlines=2)
을하고 있는지는 분명 하며, 우리는 수용된 답변의 저자가 next()
자신의 코드에서 사용하는 이유를 파악하거나 언급해야하는 모호성을 피합니다 .
2 행부터 여러 CSV 파일을 읽으려면 매력처럼 작동합니다.
for files in csv_file_list:
with open(files, 'r') as r:
next(r) #skip headers
rr = csv.reader(r)
for row in rr:
#do something
(이것은 다른 질문에 대한 파르페의 답변의 일부입니다 )
# Open a connection to the file
with open('world_dev_ind.csv') as file:
# Skip the column names
file.readline()
# Initialize an empty dictionary: counts_dict
counts_dict = {}
# Process only the first 1000 rows
for j in range(0, 1000):
# Split the current line into a list: line
line = file.readline().split(',')
# Get the value for the first column: first_col
first_col = line[0]
# If the column value is in the dict, increment its value
if first_col in counts_dict.keys():
counts_dict[first_col] += 1
# Else, add to the dict and set value to 1
else:
counts_dict[first_col] = 1
# Print the resulting dictionary
print(counts_dict)
next(f)
사용f.readline()
하고 변수로 저장