remove special characters lib python code example
Example 1: how to earse special chrat¥cter from string in python
alphanumeric = [character for character in a_string if character.isalnum()]
Example 2: remove special characters from string in python
''.join(i for i in string if i.isaplha()