if else comprehension

PHOTO EMBED

Fri Sep 01 2023 10:06:47 GMT+0000 (Coordinated Universal Time)

Saved by @pythonHub #python #python-hub #basics

a = int(input("Enter value of a:-\n"))
b = int(input("Enter value of b:-\n"))
print("a is greater than b") if a > b else print("b is greater than a")
content_copyCOPY