Comparison operators (2)

The result of comparison operators is a 0 (FALSE ) or 1 (TRUE), of type integer:

a = 4>3
print a
print(type(a))

will print:

1
<type 'int'>