Mango/serial.py
Thorben Wesche 2961d718e1 t
2019-05-30 15:42:58 +02:00

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))