為什麼我的 Python 程式碼處理 CSV 檔案中的標題行而不是跳過它?

Mary-Kate Olsen
發布: 2024-10-30 20:49:02
原創
267 人瀏覽過

Why is my Python code processing the header row in a CSV file instead of skipping it?

使用Python 處理CSV 檔案時跳過標頭

問題:

在Python 中,正在處理CSV ,但第一行(標題行)正在被修改而不是被排除。

有問題的程式碼:

<code class="python">in_file = open("tmob_notcleaned.csv", "rb")
reader = csv.reader(in_file)
out_file = open("tmob_cleaned.csv", "wb")
writer = csv.writer(out_file)
row = 1

for row in reader:
    # Row processing logic

in_file.close()    
out_file.close()</code>
登入後複製

問題:

將'row' 變數初始化為1 不會初始化為1 不會初始化為1 不會初始化為1 不會初始化為1阻止處理標題行。

解決方案:

要跳過標題行,請使用next() 函數將讀取器推進一項可迭代。在這種情況下,next()的回傳值可以被忽略。

修改程式碼:

<code class="python">with open("tmob_notcleaned.csv", "rb") as in_file, open("tmob_cleaned.csv", "wb") as out_file:
    reader = csv.reader(in_file)
    next(reader, None)  # Skip the header row
    writer = csv.writer(out_file)

    for row in reader:
        # Row processing logic</code>
登入後複製

替代選項:

如果輸出檔案中需要標題行,可以在循環循環之前將其傳遞給writer.writerow():

<code class="python">with open("tmob_notcleaned.csv", "rb") as in_file, open("tmob_cleaned.csv", "wb") as out_file:
    reader = csv.reader(in_file)
    headers = next(reader, None)  # Returns the header row or None if the input is empty

    if headers:
        writer.writerow(headers)

    for row in reader:
        # Row processing logic</code>
登入後複製

以上是為什麼我的 Python 程式碼處理 CSV 檔案中的標題行而不是跳過它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!