I am writing an application on PyCharm in Python 2.6.6 and not getting the output I expect:
if VAR1 != row2:
print "Status 1: %s" %VAR1
print "Status 2: %s" %row2
print "%s != %s" % (VAR1, row2)
Output:
Status 1: 3
Status 2: 3
3 != (3L,)
Does somebody know what's happening here?