已解決:用於跳過標題行的 python

在 Python 中跳過標題行的主要問題是,當程序試圖訪問不在文件第一行的變量或函數時,它可能會導致錯誤。

 in csv

There is no built-in function in Python to skip the header line of a CSV file, but the following code will accomplish what you want:

import csv with open('input.csv', 'rb') as f: reader = csv.reader(f) for row in reader: if row[0] != 'header': print row

此代碼將打開 input.csv 文件,創建 CSV 閱讀器對象,並遍歷文件中的行。 如果一行中的第一個元素不等於'header',則打印該行。

標題行

Python 中的標題行是源文件的第一行。 它由文件名後跟一個冒號和文件擴展名組成。

跳過元素

在 Python 中,Skip 元素是一種特殊類型的列表,它會跳過列表的前 n 個元素。

相關文章:

發表評論