a = 198 b = 198 print(a is b) a = 257 b = 257 print(a is b) a = 257; b=257 print(a is b) 运行结果: True True True [Finished in 0.2s] 无法再现OωO
什么意思?