I have DataFrame like below in Python Pandas ("col1" is data type string):
col1
-----
1234AABY332
857363opx00C*+
9994TyF@@@!
...
And I need to remove all special characters like: ["-", ",", ".", ":", "/", "@", "#", "&", "$", "%", "+", "*", "(", ")", "=", "!", "
", "~", "~"]
and letters (both large and small) like for example: A, a, b, c and so one...
so as a result I need DataFrame like below:
col1
-----
1234332
85736300
9994
...
How can I do that in Python Pandas ?