जवाबों:
with open(fname) as f:
next(f)
for line in f:
#do something
header_line = next(f)
।
f = open(fname,'r')
lines = f.readlines()[1:]
f.close()
['a', 'b', 'c'][1:]
=>['b', 'c']
consume()
से more-itertools
के रूप में में कहा गया है docs.python.org/3/library/itertools.html#itertools-recipes ? मैं पर इस बारे में सुना stackoverflow.com/questions/11113803
यदि आप पहली पंक्ति चाहते हैं और फिर आप फ़ाइल पर कुछ ऑपरेशन करना चाहते हैं तो यह कोड मददगार होगा।
with open(filename , 'r') as f:
first_line = f.readline()
for line in f:
# Perform some operations
अगर स्लाइसिंग iterators पर काम कर सकता है ...
from itertools import islice
with open(fname) as f:
for line in islice(f, 1, None):
pass
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
(यह एक अलग सवाल के Parfait के जवाब का हिस्सा है )
# 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()
इसे एक चर के रूप में संग्रहीत करें