7 lines
168 B
Python
7 lines
168 B
Python
# -*- 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]) |