Conditional car
is_old = False
is_licensed = True
if is_old:
print("Old enough.")
else:
print("Not old enough.")
if is_licensed:
print("Has License.")
else:
print("Does not have license.")
if is_old & is_licensed:
print("You can drive.")
elif is_licensed:
print("How did you even get a license?")
else:
print("You cannot drive. Begone!")
print("G'day")INFO