def is_alpha(str1):
if len(str1) == 1 and (ord('a') <= ord(str1) <= ord('z') or ord('A') <= ord(str1) <= ord('Z')):
return 1
return 0
Или можно использовать встроенную функцию:
if len(str1) == 1 and str1.isalpha():
def is_alpha(str1):
if len(str1) == 1 and (ord('a') <= ord(str1) <= ord('z') or ord('A') <= ord(str1) <= ord('Z')):
return 1
return 0
Или можно использовать встроенную функцию:
def is_alpha(str1):
if len(str1) == 1 and str1.isalpha():
return 1
return 0