Take a Boolean value "False" and a float number "15.6" and perform the AND operation on both.
Answers
Answered by
1
Answer:
Explanation:
a=False
b=15.6
print(a and b)
--------------------------
False
Similar questions