Wenn du dir nicht sicher bist, in welchem der anderen Foren du die Frage stellen sollst, dann bist du hier im Forum für allgemeine Fragen sicher richtig.
with open('Downloads/Phosphor_Kennwerte2.csv', 'r') as x:
reader = csv.reader(x, delimiter=';') # Der hier wird nicht verwendet.
data = list(csv.reader(x)) # Hier wird noch mal ein neuer erstellt und verwendet.
print(data[3][3])
“Design patterns are kind of like sarcasm: hard to use well, not always appropriate,
and disgustingly bad when applied to problems they are not meant to solve.” — ajones in c.l.python