Answers for "python 3 if and else statement"

0

python 3 if and else statement

xcvcxvcxvcxvcxvxccvxcv
Posted by: Guest on September-28-2021
-1

if then else python

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")
Posted by: Guest on August-21-2020

Code answers related to "python 3 if and else statement"

Python Answers by Framework

Browse Popular Code Answers by Language