Make sure you convert column to Date & Time properly before calling dt.strftime():
df['NewDateTime'] = pd.to_datetime(df.DateTime).dt.strftime("%d/%m/%Y %H:%M")
Make sure you convert column to Date & Time properly before calling dt.strftime():
df['NewDateTime'] = pd.to_datetime(df.DateTime).dt.strftime("%d/%m/%Y %H:%M")