7 lines
254 B
Python
7 lines
254 B
Python
import csv
|
|
|
|
#тут просто прочитали все значения
|
|
with open('../res/Stores.csv', newline='') as csvfile:
|
|
spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
|
|
for row in spamreader:
|
|
print(', '.join(row)) |