+ 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 Answer
+ 7
Hint:
There is inbuild method:
string.isalpha()
With it you can check each character.