Hello everybody,
I just can't find the error in the following code
def checkio(words):
return words.replace(" ","").isalpha()
It passes all tests, except the last one.
assert checkio("Hi") == False, "Hi"
Any tips?
Created at: 2015/07/02 23:52; Updated at: 2015/07/03 17:46