I have this: 2017-01-09 23:14:06+00:00
I want this: 09/01/2017
How can i do it in a column (date_of_birth) of DataFrame in in Python?
df = pd.DataFrame({
'name': ['alice','bob','charlie'],
'date_of_birth': ['2017-01-04 17:52:30+00:00','2017-01-04 17:52:35+00:00','2017-01-04 17:53:03+00:00 ']
})
Thanks!