diff --git a/.idea/csv-editor.xml b/.idea/csv-editor.xml new file mode 100644 index 0000000..fd9354b --- /dev/null +++ b/.idea/csv-editor.xml @@ -0,0 +1,16 @@ + + + + + + \ No newline at end of file diff --git a/LabWork01/LoadDB.py b/LabWork01/LoadDB.py new file mode 100644 index 0000000..155ba9a --- /dev/null +++ b/LabWork01/LoadDB.py @@ -0,0 +1,7 @@ +import csv + +#тут просто прочитали все значения +with open('../res/Stores.csv', newline='') as csvfile: + spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|') + for row in spamreader: + print(', '.join(row)) \ No newline at end of file