列表索引超出了csv的范围

时间:2018-06-06 05:55:13

标签: python python-3.x csv pycharm

我正在使用python中的csv文件。我需要打印csv文件的第3列。 这是我写的代码。

import csv

f = open('query.csv')
csv_f = csv.reader(f)

attendee_emails = []

for row in csv_f:
  attendee_emails.append(row[2])

print(attendee_emails)

它告诉我第attendee_emails.append(row[2])行有一个错误,列表索引超出范围。 请告诉我有什么问题?

0 个答案:

没有答案