gpt4 book ai didi

Python CSV 模块

转载 作者:行者123 更新时间:2023-11-28 19:49:28 24 4
gpt4 key购买 nike

我正在使用以下代码学习如何读取、写入和分析来自本网站的 CSV 文件 http://www.whit.com.au/blog/2011/11/reading-and-writing-csv-files/ .但是,我收到这些错误,

Traceback (most recent call last): Files "csv_example.py", 
line 1, in <module? import csv
File "C:\python27\csv.py", line 11, in <module>
mywriter = csv.writer(csv_out)
AttributeError: 'module' object has no attribute 'writer'

您知道我为什么会收到上述错误吗?我正在使用 Notepad++ 和 PowerShell。实际上,我环顾四周并试图找到一个供 python 下载的 CSV 模块,但我没有找到任何模块。我有点迷路了。

import csv

bus_numbers = ['101', '102', '36', '40']
bus_names = ['NUC_A', 'NUC_B', 'CATDOG', 'HYDRO_A']
voltage = [.99, 1.02, 1.01, 1.00]

# open a file for writing.
csv_out = open('mycsv.csv', 'wb')

# create the csv writer object.
mywriter = csv.writer(csv_out)

# all rows at once.
rows = zip(bus_numbers, bus_names, voltage)
mywriter.writerows(rows)

# always make sure that you close the file.
# otherwise you might find that it is empty.
csv_out.close()

旁注,我对有关如何在 python 中读取、写入和使用 CSV 文件的优秀教程很感兴趣。

最佳答案

这是一个常见的错误。将脚本从 csv.py 重命名为其他名称;当您执行 import csv 时,它会尝试导入自身。

关于Python CSV 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19372111/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com