Sets
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
is_old = False
is_licenced = True
if is_old:
print('I am old enough to drive')
elif is_licenced:
print('you can drive now')
else:
print('you are not of age')
print('okok')
#############################
is_old = True
is_licenced = True
if is_old and is_licenced:
print('I am old enough to drive!')
else:
print('you are not of age!')
print('okok')
#Ternary Operator
#condition_if_true if condition else condition_if_false
is_friend = True
can_message = 'Message Allowed' if is_friend else 'not allowed to message'
print(can_message)
#Short Circuting
is_Friend = True
is_User = True
print(is_Friend and is_User)
if is_Friend and is_User:
print('best friend forever')
if is_Friend or is_User:
print('best friend forever')
Python
INFO