DAY2

Comparison Operators

a==b
a!=b
a>b
a=b
a<=b

if / else / elif

if age>=18:
 print("Adult")
elif age>=13:
 print("Teen")
else:
 print("Child")

Logical Operators

if age>=18 and is_citizen:
 print("Eligible")