Conditional Logic
is_old = True
is_licenced = True
if is_old and is_licenced:
print("You are old enough to drive, and you have a licence!")
else:
print("You are not old enough!")INFO
is_old = True
is_licenced = True
if is_old and is_licenced:
print("You are old enough to drive, and you have a licence!")
else:
print("You are not old enough!")