Mango/serial.py

8 lines
210 B
Python
Raw Normal View History

2019-05-30 15:42:58 +02:00
'''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))