This commit is contained in:
2026-05-13 17:09:39 +02:00
parent 4519ee2076
commit f0f31e774d
11 changed files with 227 additions and 2 deletions
+7
View File
@@ -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])