Skip to content
Advertisement

Convert object column format “%d-%b-%y” to datetime, where month initial letter is Upper or lowercase and Month can be in italian or english

For this dataframe (link):

JavaScript

I want to convert columns [Issue date, Redemption date] to datetime format.

The format variations are:

  • Month is lower case: 01-set-09
  • Month in Italian 01-set-09 (settembre-italian instead of September-English)

I have tried using:

JavaScript

and this one:

JavaScript

however i get the following error:

JavaScript

Here is a working code that generates my error:

JavaScript

EDIT FROM MrFuppes answer

when running the code suggested (I am using GoogleColab):

JavaScript

I get the following error:

JavaScript

Advertisement

Answer

If you know which languages to expect in advance, another option would be to set the appropriate locale. Side note, the names of the locales (i.e. the string to use for setting a specific one) depend on the operating system.

Example, Windows locale:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement