我通过以下方式获得两个包含整数值的字符串。我已经尝试了所有选项,但结果总是 False。
string1 = element.__dict__.get('layer') # '7'
temp_string2,temp_string3=temp_key.split(':') # temp_key = '7:12'
if string1 == temp_string2:
print "data found"
尽管两者都包含相同的值,但我没有得到 True 。我可以对此发表一些意见吗?