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