Python3 题解 | #判断是不是字母#
判断是不是字母
http://www.nowcoder.com/practice/91a588dd4cd244bfa616f17603ec123c
#python3题解#
lis = []
while 1:
try:
lis.append(input())
except:
break
print("\n".join(f"{i} is an alphabet." if i.isalpha() else f"{i} is not an alphabet." for i in lis))