x = False
y = False
# hint: you will also need 'or' and 'not'
is_true = (x and y)
print(is_true)
# expected output: True
Python
Setting up Python environment...
Output
x = False
y = False
# hint: you will also need 'or' and 'not'
is_true = (x and y)
print(is_true)
# expected output: True
Setting up Python environment...