pandasframe_datatypes= ['A':int64, 'B':object, 'C':object, 'D':object, 'E':float64]
It is used like so:
test = pd.read_csv("test.csv", sep=";", names=pandasframe_names, dtype=pandasframe_datatypes)
But it gives a syntax error, what is wrong?
A is an integer, B and C and D is a string, E is a float.
What would the correct answer look like?
Also my csv has a header column and if I specify the names, the first column is doubled. Is there a solution for this as well?