PRACTICE CODE SNIPPETS

PRACTICE CODE SNIPPETS

Search This Blog

Showing posts with label condition if. Show all posts
Showing posts with label condition if. Show all posts

Monday, August 15, 2022

python if

8:41 AM
  a = 200 b = 33 if b > a :   print ( "b is greater than a" ) elif a == b :   print ( "a and b are equal" ) els...