Skip to content

Opdracht 15 If statements en het boolean datatype

  1. Wat verwacht je van de code hieronder:
a = True
b = True
c = False

if a and b and not c: 
   print(f"ja")
else: 
   print(f"nee")