标签: python string-comparison
我需要比较两个字符串(直接和反向),它们由整数组成。我尝试下一个代码
str(1001) is str(1001)[::-1]
但它会返回False?有趣的是,在IDLE输出中是相同的/
False