I have a column named "Start Time". It is a string and it displays the time as 11:20:15. I want to have the time in the format 112015. So I need to replace the colon.
I have tried:
["Start Time"] = df["Start Time"].replace(":","", regex=True)
But that didn't work. It didn't give an error either but the time remains 11:20:15.
Can someone point me in the right direction?