Wie würden Sie sagen, ist nicht gleich?
Mögen
if hi == hi:
print "hi"
elif hi (does not equal) bye:
print "no hi"
Gibt es etwas Äquivalentes, ==
das "nicht gleich" bedeutet?
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
,!=
(optional<>
) oderis not
?