Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 162 Bytes

File metadata and controls

9 lines (9 loc) · 162 Bytes
num = 5
if num > 10:
    print("num is totally bigger than 10.")
elif num < 10:
    print("num is smaller than 10.")
else:
    print("num is indeed 10.")