Skip to content
Advertisement

How to strip last three characters from a column in Pandas Dataframe

I have a Pandas dataframe like this:

JavaScript

I like to remove any ‘[e]’ under ‘Country’ column of the DF, to have this:

JavaScript

When I use:

JavaScript

I get the ‘[e]’ is removed including the last ‘e’ of country’s name (e.g. Singapore, Greece, France).

JavaScript

Advertisement

Answer

.str.replace():

JavaScript

Prints:

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