自定义判断函数

···

def is_float(str):

    if str.count('.') == 1: #小数有且仅有一个小数点

        left = str.split('.')[0]  #小数点左边(整数位,可为正或负)

        right = str.split('.')[1]  #小数点右边(小数位,一定为正)

        lright = '' #取整数位的绝对值(排除掉负号)

        if str.count('-') == 1 and str[0] == '-': #如果整数位为负,则第一个元素一定是负号

            lright = left.split('-')[1]

        elif str.count('-') == 0:

            lright = left

        else:

            return False

        if right.isdigit() and lright.isdigit(): #判断整数位的绝对值和小数位是否全部为数字

            return True

        else:

            return False

    else:

        return False

···

def is_Chinese(word):

    for ch in word:

        if '\u4e00' <= ch <= '\u9fff':

            return True

    return False

···

你可能感兴趣的:(自定义判断函数)