How to read one single line of csv data in Python?

后端 未结 7 1395
终归单人心
终归单人心 2020-11-28 05:04

There is a lot of examples of reading csv data using python, like this one:

import csv
with open(\'some.csv\', newline=\'\') as f:
  reader = csv.reader(f)
          


        
7条回答
  •  北荒
    北荒 (楼主)
    2020-11-28 05:52

    From the Python documentation:

    And while the module doesn’t directly support parsing strings, it can easily be done:

    import csv
    for row in csv.reader(['one,two,three']):
        print row
    

    Just drop your string data into a singleton list.

提交回复
热议问题