Computer Science, asked by erni6416, 6 hours ago

What's the value of this Python expression?
((10 >= 5*2) and (10 <= 5*2))

Answers

Answered by sara2954
0

Answer:

True

Explanation:

((10>=5*2)&&(10<=5*2))

((10>=10)&&(10<=10))

(True && True)

True

Similar questions