Come diresti che non è uguale?
Piace
if hi == hi:
print "hi"
elif hi (does not equal) bye:
print "no hi"
C'è qualcosa di equivalente a ==
questo significa "non uguale"?
Python3 : The operators <, >, ==, >=, <=, and != compare the values of two objects.
docs.python.org/3/reference/expressions.html#value-comparisons
python2:
docs.python.org/2/reference/expressions.html#not-in
else
,!=
(facoltativamente<>
) ois not
?