Python Editor

Showing posts with label Python | lesson2 | If Else Statement. Show all posts
Showing posts with label Python | lesson2 | If Else Statement. Show all posts

Python | Lesson2 | If Else Statement


# If Else Statements.
x = 200
y = 33
if x > y:
  print("x is greater than y")
elif a == b:
  print("x and y are equal")
else:
  print("x is less than y")