Let\'s say I have the string \'2okjser823ab\'. How can I remove all the numbers from the string using .translate()?
I see that in Python 2.x you can do something li
You may use the strip function :
strip
strings="tycoon0123456789999" strings.strip("0123456789")