代码如下

import csv
with open('D:\\abc\\userinfo.csv',newline='') as f:
    reader = csv.reader(f)
    for row in reader:
        print(row)

 

相关文章:

  • 2021-09-16
  • 2021-06-10
  • 2021-09-23
  • 2021-05-31
  • 2022-03-04
  • 2021-06-02
  • 2021-11-13
  • 2021-10-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
  • 2021-11-23
  • 2021-05-23
相关资源
相似解决方案