以下のコードを使用して、Pythonを使用してcsvを編集しています。コードで呼び出される関数は、コードの上部を形成します。
問題:以下のコードで2行目からcsvの編集を開始したいのですが、ヘッダーを含む1行目を除外したいのですが。現在、1行目のみに関数を適用しており、ヘッダー行が変更されています。
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[13] = handle_color(row[10])[1].replace(" - ","").strip()
row[10] = handle_color(row[10])[0].replace("-","").replace("(","").replace(")","").strip()
row[14] = handle_gb(row[10])[1].replace("-","").replace(" ","").replace("GB","").strip()
row[10] = handle_gb(row[10])[0].strip()
row[9] = handle_oem(row[10])[1].replace("Blackberry","RIM").replace("TMobile","T-Mobile").strip()
row[15] = handle_addon(row[10])[1].strip()
row[10] = handle_addon(row[10])[0].replace(" by","").replace("FREE","").strip()
writer.writerow(row)
in_file.close()
out_file.close()
row
変数をに初期化してこの問題を解決しようとしまし1
たが、機能しませんでした。
この問題を解決するのを手伝ってください。