leftover
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
f = open("bezirke.csv", "r", encoding="utf-8")
|
||||
header = next(f) # Header entfernen
|
||||
for x in f:
|
||||
datei = x.split(";")
|
||||
|
||||
print(datei[2])
|
||||
Reference in New Issue
Block a user