8 lines
210 B
Python
8 lines
210 B
Python
|
'''Serialisation of data'''
|
||
|
import csv
|
||
|
|
||
|
with open('test.csv', newline='') as csvfile:
|
||
|
spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
|
||
|
for row in spamreader:
|
||
|
print(', '.join(row))
|