内置函数id,返回内存地址时间:2022-09-11 15:23:38 a = 2 def b(): a = 3 print id(a) class c(): def __init__(self): print id(c) d =c() print id(d) print d