Computer Science, asked by shambu01111, 5 months ago

predict output in python

x=10.0
y=(x<100.0) and x>=10

pls send crct ans​

Answers

Answered by Oreki
1

Output:

True

Explanation:

As x is less than 100 and more than or equal to 10,

True and True -> True

Similar questions