Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 276 Bytes

File metadata and controls

23 lines (17 loc) · 276 Bytes

if - else

Basic

age = 5

if age == 5:
  print("condition is true")
else:
  print("condition is false")

Single line

age = 18
is_adult = "YES" if age >= 18 else "No"
print(f"He is an adult : {is_adult}")

***Output***
He is an adult : YES