Skip to content

Instantly share code, notes, and snippets.

# CSV was funktioniert
import pandas as pd
df = pd.read_csv("D:\Python\Vokabeltrainer\englisch.csv",
sep=";",
header=0,
#encoding = "latin1", sollte Umlaute anpaasen, aber zerstört sie
names=["Deutsch",
"Englisch"],
dtype = {"Deutsch":str,
"Englisch":str})