id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Booleansnot_equal2

prev  |  next  |  chance

Checking to see if a number is not equal to another number

def not_equal(x, y):
    return x != y
Function Call  Return Value
not_equal(3, 5)
not_equal(5, 4)
not_equal(15, 15)

Experiment with this code on Gitpod.io

⬅ Back