Python如何判断一个数是否为整数?

python中可以使用isinstance()或type()函数判断一个数是否为整数。

1、使用isinstance()函数判断

isinstance() 方法的语法:

isinstance(object, classinfo)

如果对象的类型与参数二的类型(classinfo)相同则返回 True,否则返回 False。

示例:

>>>a = 2
>>> isinstance (a,int)
True

2、使用type()函数判断

type()函数语法:

type(object)
type(name, bases, dict)

type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。

示例:

>>> type(1)
<type 'int'>

更多Python知识请关注云海天python教程网。

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

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