摘要: import time a = time.gmtime() b = time.gmtime() print(a == b) # 输出True print(a is b) # 输出False print(id(a)) # 2680257978480 print(id(b)) # 26802597848 阅读全文
posted @ 2023-11-08 15:19 sangern 阅读(9) 评论(0) 推荐(0) 编辑