假设a 是整型,如下: a=100使用下面的代码可以判断是否整型:import typesa=100type(a)==type(1)最后一个表达式的值就是你要的结果了
关于判断数据是不是一个类型python最正规的方式是用 isinstance(a,int) 来判断a是不是int类型
def is_int(n): try: int(n) return True except: return False
type(1) is int