Comment diriez-vous que ce n'est pas égal?
Comme
if hi == hi:
print "hi"
elif hi (does not equal) bye:
print "no hi"
Y a-t-il quelque chose d'équivalent ==
qui signifie «non égal»?
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
,!=
( le cas échéant<>
) ouis not
?