Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、1 行に 4 つの項目があり、コンマで区切られている csv ファイルを解析したいと考えています。例えば:
1, "2,3", 4, 5
どうすれば分割できますか:
[1,"2,3",4,5]
を使用しようとしましcsv.readerたが、結果はまだ間違っています。誰でも助けることができますか?THX!
csv.reader
csv.readerは型変換を行いませんが、おそらく次のようなものです:
In [1]: import csv In [2]: data = ['1, "2,3", 4, 5'] In [3]: next(csv.reader(data, skipinitialspace=True)) Out[3]: ['1', '2,3', '4', '5']