输入一个字符,判断其是不是字母,是就输出“yes”,不是就输出”NO
c = input() if ((c>='a' and c<='z') or (c>='A' and c<='Z')): print("yes") else: print("NO")