-1
Trying to convert str to date in BR format but from the error below. And if I take 'format' it goes in American format:
df = pd.read_csv(‘df.csv',encoding='cp1252', sep=';')
df['Data']= pd.to_datetime('31/09/2019 11:13:01', format='%d/%m/%Y %H:%M:%S')
Error: Valueerror: day is out of range for Month
Great observation.
– user167899