How to Remove Numbers from Text Using Python
Python
Here we remove the zeros and threes from the string variable text.
To do this we first create a mapping using maketrans that declares any values in string.digits (which is the the digits from 0 to 9) should be removed.
We then apply the mapping to our text variable using the translate function.
1| import string 2| 3| text = '000This text33 has some numbers' 4| 5| mapping = str.maketrans('', '', string.digits) 6| text = text.translate(mapping) 7| 8| >> 'This text has some numbers'
149
132
127
119