编程思路: 1.用def定义四个函数,分别是用来判断汉字,数字,英语或其他(如下列代码所示) 2.最前面添加一个输入语句。最后面添加一个选择和输出同时的语句即可
代码语言:javascript复制def is_chinese(uchar):
"""判断一个unicode是否是汉字"""
if uchar >= u'u4e00' and uchar<=u'u9fa5':
return True
else:
return False
def is_number(uchar):
"""判断一个unicode是否是数字"""
if uchar >= u'u0030' and uchar<=u'u0039':
return True
else:
return False
def is_alphabet(uchar):
"""判断一个unicode是否是英文字母"""
if (uchar >= u'u0041' and uchar<=u'u005a') or (uchar >= u'u0061' and uchar<=u'u007a'):
return True
else:
return False
def is_other(uchar):
"""判断是否非汉字,数字和英文字符"""
if not (is_chinese(uchar) or is_number(uchar) or is_alphabet(uchar)):
return True
else:
return False