Conditional Logic
is_old = True
is_licenced = False
if is_old and is_licenced:
print('You are allowed to drive!')
else:
print("Get tf out of the car!")
INFO
is_old = True
is_licenced = False
if is_old and is_licenced:
print('You are allowed to drive!')
else:
print("Get tf out of the car!")