Assuming that variables have the following boolean values:
a = True
b = not aEnter the result by evaluating the expression:
not (a and b)Hint: The boolean values True and False both start with a capital letter in Python. Therefore, the answer is case-sensitive!