美文网首页
python3 读取CSV文件

python3 读取CSV文件

作者: guitar_当当当 | 来源:发表于2017-04-19 11:06 被阅读0次

    import csv

    #打开文件,用with打开可以不用去特意关闭file了,python3不支持file()打开文件,只能用open()

    with open("XXX.csv","r",encoding="utf-8") as csvfile:

    #读取csv文件,返回的是迭代类型

    read = csv.reader(csvfile)

    for i in read:

    print(i)

    相关文章

      网友评论

          本文标题:python3 读取CSV文件

          本文链接:https://www.haomeiwen.com/subject/dpvczttx.html