115. Extract the Last Two Characters

Easy

Return the last two characters of each value in the country column.

Sample data: df:

  country
0     USA
1     GBR
2     KEN
3     JPN

Sign in to write and run your own code.

Implement solve(...)