Sep-08-2019, 03:31 AM
I met a strange problem when using
When I move the code to a file, the output will be
is
. Here is the code:1 2 3 4 5 6 7 8 |
>> i = "12" >> j = "12" >> i is j True >> i = "1 2" >> j = "1 2" >> i is j False |
True True
. What happened?