Python 判断是否为整数

Python有默认的整数判断函数 str.isdigit() ,但其无法判断负整数,因此需要先把负整数转化为无符号的整数。

示例

@classmethod
def is_number(cls, numStr):
    ''' 字符串是否是整数
    '''
    flag = False
    numStr = str(numStr).strip().lstrip('-').lstrip('+')    # 去除正数(+)、负数(-)符号
    if str(numStr).isdigit():
        flag = True
    return flag

推荐学习《python教程》。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何判断为整数