CBSE BOARD XII, asked by Shreyas987654, 2 months ago

Take a Boolean value "False" and a float number "15.6" and perform the AND operation on both.

Answers

Answered by punac3000
1

Answer:

Explanation:

a=False

b=15.6

print(a and b)

--------------------------

False

Similar questions