Python 的id(~)
方法返回对象的"identity"。 "identity" 是一个唯一的整数,在对象的生命周期内是常量,也表示对象在内存中的地址。
参数
1. object
| object
要返回其标识的对象。
返回值
表示给定对象身份的唯一整数。
例子
返回变量 a
的标识:
a = 5.0
id(a)
4384627208
相关用法
- Python id()用法及代码示例
- Python numpy matrix identity()用法及代码示例
- Python NumPy identity方法用法及代码示例
- Python NumPy itemset方法用法及代码示例
- Python import__用法及代码示例
- Python isinstance方法用法及代码示例
- Python BeautifulSoup insert方法用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python ipaddress.collapse_addresses用法及代码示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代码示例
- Python io.text_encoding用法及代码示例
- Python string isidentifier()用法及代码示例
- Python numpy irr用法及代码示例
- Python ipaddress.IPv4Address.__format__用法及代码示例
- Python calendar isleap()用法及代码示例
- Python math isclose()用法及代码示例
- Python NumPy isalnum方法用法及代码示例
- Python NumPy isnat方法用法及代码示例
- Python string isupper()用法及代码示例
- Python itertools.cycle用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python itertools.repeat用法及代码示例
- Python ipaddress.IPv4Network.supernet用法及代码示例
- Python string isalnum()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python | id method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。