Merge pull request #697 from jbscript/master

Fix isalpha() check for challenge string to return False
This commit is contained in:
Asabeneh 2026-01-10 19:16:55 +02:00 committed by GitHub
commit 16712cf431
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,7 +153,7 @@ print(challenge.isalnum()) # False
# isalpha(): Checks if all characters are alphabets
challenge = 'thirty days of python'
print(challenge.isalpha()) # True
print(challenge.isalpha()) # False
num = '123'
print(num.isalpha()) # False