笨鸟编程-零基础入门Pyhton教程

 找回密码
 立即注册

type和id

发布者: 笨鸟自学网

type函数返回一个对象的类型。举个例子:

print(type(''))
# Output: <type 'str'>

print(type([]))
# Output: <type 'list'>

print(type({}))
# Output: <type 'dict'>

print(type(dict))
# Output: <type 'type'>

print(type(3))
# Output: <type 'int'>

id()函数返回任意不同种类对象的唯一ID,举个例子:

name = "Yasoob"
print(id(name))
# Output: 139972439030304
上一篇:dir下一篇:inspect模块

Archiver|手机版|笨鸟自学网 ( 粤ICP备20019910号 )

GMT+8, 2024-7-27 17:46 , Processed in 0.024790 second(s), 17 queries .

© 2001-2020

返回顶部