题解 | #判断是不是字母#
判断是不是字母
http://www.nowcoder.com/practice/91a588dd4cd244bfa616f17603ec123c
while 1:
try:
n = input()
if n.isalpha():
print("{} is an alphabet." .format(n))
else:
print("{} is not an alphabet.".format(n))
except:
break
华为HUAWEI工作强度 1375人发布
查看20道真题和解析