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

 

 

Athenian: Booleansgreater_than2

prev  |  next  |  chance

Checking to see if a number is greater than another number

def greater_than(x, y):
    return x > y
Function Call  Return Value
greater_than(3, 5)
greater_than(5, 4)
greater_than(15, 15)

Experiment with this code on Gitpod.io

⬅ Back