I have a table, that looks like this:
date                     id
0   11:09:27 Nov. 26 2020   94857
1   10:49:26 Okt. 26 2020   94853
2   10:48:24 Sept. 26 2020  94852
3   9:26:33 Aug. 26 2020    94856
4   9:26:33 Jul. 26 2020    94851
5   9:24:38 Dez. 26 2020    94850
6   9:24:38 Jan. 26 2020    94849
7   9:09:08 Jun. 27 2019    32148
8   9:02:41 Mai 27 2019 32145
9   9:02:19 Apr. 27 2019    32144
10  9:02:05 Mrz. 27 2019    32143
11  9:02:05 Feb. 27 2019    32140
the date column format now is 'object', I'm trying to change it to 'datetime' using
df['date'] = pd.to_datetime(df['date'], format ='HH:MM:SS-%mm-%dd-%YYYY', errors='coerce')
and receive only NaT as a result. The problem is that the names of the months here are not standart. For example, Mai comes without a dot in the end. What's the best way to convert its format?
 
     
     
    