首页 > 代码库 > python type演示
python type演示
理论就不讲了,我感觉只有亲自敲代码,才能感觉到代码的神奇。
代码:
#!/usr/pin/env python
def displayNumType(num):
print num,‘is‘,
if isinstance(num,(int,long,float,complex)):
print ‘a number of type:‘, type(num).__name__
else:
print ‘not a number at all!‘
displayNumType(68)
displayNumType(23.1)
displayNumType(‘xxx‘)
displayNumType(99999999999999L)
displayNumType(-1.2+1.4j)
输出结果:
68 is a number of type: int
23.1 is a number of type: float
xxx is not a number at all!
99999999999999 is a number of type: long
(-1.2+1.4j) is a number of type: complex
python type演示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。