Python内置函数(41)——id

本文详细介绍了Python中id()函数的功能与使用方法。该函数用于获取对象的唯一标识符,这一标识符在整个程序运行期间对于同一对象是恒定不变的,并且能够确保其唯一性。文章通过实例展示了不同类型对象调用id()函数后的结果。

英文文档:

id(object)Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value.CPython implementation detail: This is the address of the object in memory.  返回对象的唯一标识说明:    1. 返回对象的唯一标识符,用整数表示。在程序生命周期内,这个标识符常量是唯一的。
>>> a = 1
>>> id(a)
1652447504
>>> id(1.0)
66116592
>>> a = 'some text'
>>> id(a)
69228568

转载于:https://www.cnblogs.com/lincappu/p/8145005.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值