I have a CSV with an input like this:
Name hours Date
User1 2,5 01.01.2017
User1 5 02.01.2017
...
User1 3,5 31.01.2017
And now I want an output like this:
Total:
User1 11 01-31.01.2017
But I get this
2,553,5
I cant say why I tested so many examples but always the same output.
print(df["hours"].sum())