用Python解析CSV

时间:2018-09-21 15:18:44

标签: python

我正在尝试运行以下代码来打开csv,解析行并在终端中打印输出

import csv
with open('C:\Users\Python\test7.csv') as csv_file:
    csv_reader = csv.reader(csv_file, delimiter=',')
    line_count = 0
    for row in csv_reader:
        print(row)

当我在终端中运行此脚本时,它现在完成并出现错误,而是只在文本编辑器中打开python代码,而不吐出csv中的信息。我的代码格式错误吗?

0 个答案:

没有答案