User Tools

Site Tools


csv_module

parse strings

In [1]:
import csv
csv.reader(['one,two,three']).__next__()
Out[1]:
['one', 'two', 'three']
csv_module.txt · Last modified: 2023/11/10 05:35 by admin