a string is given with alphabets and numbers. for example 1256Ab79.
We have to remove 56 and 7 where ever it occurs from the string.
Input:
1256Ab79
Output:
12Ab9
Input:
a567Eq79
Output:
aEq9
I tried .isdigits() functions but i'm not able to slove that
question from:https://stackoverflow.com/questions/65930103/how-to-remove-a-number-from-alphanumeric-string-in-python