PRACTICE CODE SNIPPETS

PRACTICE CODE SNIPPETS

Search This Blog

Monday, August 15, 2022

python if

 a = 200

b = 33
if b > a:
  print("b is greater than a")
elif a == b:
  print("a and b are equal")
else:
  print("a is greater than b")

No comments:

Post a Comment

Practice and let me know for nw code snippets