当前位置:   article > 正文

Python | 读取CSV文件 (educoder)_编写一个能读取csv文件的程序,将指定的文件按照要求的格式输出

编写一个能读取csv文件的程序,将指定的文件按照要求的格式输出

任务:编写一个能读取csv文件的程序,将指定的文件按照要求的格式输出。

要求:在你的程序的当前目录下存在一个book.csv文件,读取该文件的内容,并输出要求的内容和格式。

第一关:

说明:
预期输出:

书名
python程序设计
数据结构
C语言程序设计

代码:

  1. import csv
  2. def readcsv():
  3. # *************begin************#
  4. csvfile = open('book.csv','r',encoding= 'utf-8')
  5. csvreader = csv.reader(csvfile)
  6. for row in csvreader:
  7. print(row[0])
  8. csvfile.close()
  9. # **************end*************#
  10. if __name__ == '__main__':
  11. readcsv()

第二关:

说明:
预期输出:

['python程序设计', '39']
['数据结构', '49']
['C语言程序设计', '42']

代码:

  1. import csv
  2. def readcsv():
  3. # *************begin************#
  4. fc = open('book.csv','r',encoding= 'utf-8')
  5. lst = []
  6. for line in fc:
  7. line = line.replace('\n','')
  8. lst.append(line.split(','))
  9. for i in range(1,len(lst)):
  10. print(lst[i])
  11. fc.close()
  12. # **************end*************#
  13. if __name__ == '__main__':
  14. readcsv()

第三关:

说明:
预期输出:

[{'书名': 'python程序设计', '价钱': '39'}, {'书名': '数据结构', '价钱': '49'}, {'书名': 'C语言程序设计', '价钱': '42'}]

代码:

  1. import csv
  2. def readcsv():
  3. # *************begin************#
  4. csvfile = open('book.csv', 'r', encoding='utf-8')
  5. csvreader = csv.DictReader(csvfile)
  6. lst = []
  7. for i in csvreader:
  8. i = dict(i)
  9. lst.append(i)
  10. print(lst)
  11. csvfile.close()
  12. # **************end*************#
  13. if __name__ == '__main__':
  14. readcsv()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/212511
推荐阅读
相关标签
  

闽ICP备14008679号