I am pretty new to python (or programming in general). Currently i am trying to open a CSV file.
with open("C:/Users/Sascha/Desktop/Kursmaterialien/Kursmaterialien/data/names.csv", "r") as file:
for line in file:
print(line)
break
For some reason python does not give me any responds (Not even a Traceback). That happend to me earlier with another file aswell and i dont now what the problem is.... Sooo, what should i do?