sniperwang00
Results
1
issues of
sniperwang00
s1 = 'hello world' s2 = 'hello world' s3 = s2 print(s1 == s2, s2 == s3) # True True print(s1 is s2, s2 is s3) # False True 实际执行结果为:...