I have in DataFrame in Python columns with name = "col1" with values for example: 2020-10-29 07:33:28 and dtypes of this columns is dtype('O')
.
My question is how can I convert this column ("col1") so as to have values like: 2020-10-29 instead of 2020-10-29 07:33:28 ? Of course i think that first of all it is neccesairy to convert this column to "datetim64" as I assume.