Is there a "not equal" operator in Python?

How would you say "does not equal"?

if hi == hi:
    print "hi"
elif hi (does not equal) bye:
    print "no hi"

Is there something similar to == that means "not equal"?

← Назад к списку