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

 

 

Athenian: Booleansless_than2

prev  |  next  |  chance

Checking to see if a number is less than another number

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

Experiment with this code on Gitpod.io

⬅ Back