python id()
函数用于返回类型的标识符。
id() 函数在CPython解释器里返回的是内存中的地址。
语法
语法如下:id(object)
参数
- object: 指定要获取类型标识符的对象。
返回值
返回类型的标识符。
程序示例
#!/usr/bin/python
# coding=utf-8
#!/usr/bin/python
# coding=utf-8
#定义对象
class Student:
def __init__(self, id, name):
self.id = id
self.name = name
print (id(5)) #int类型
print (id('yxjc123')) #字符串类型
student = Student(101,"张三")
print(id(student)) #对象类型
list = [1,2,3,4]
print(id(list)) #列表类型
程序运行结果:
140274576312352
140274556429288
140274556429872
140274556442440
140274556429288
140274556429872
140274556442440