+ 1
How to find the secret massage?
goal = "#4F₹&i&₹r¢€s¢¥t" # This is the variable I store. And I wish to remove all special charecters and print only hidden massage 'First'. Is there any one liner code or few coding in python to solve this problem.
1 Respuesta
+ 7
Hint:
There is inbuild method:
string.isalpha()
With it you can check each character.