Computer Science, asked by dranjalisinghcom, 6 months ago

Write the output of the following code
segments in Python Language.
a = 400
b = 600
print(a > 500 and b > 1000​

Answers

Answered by bktbunu
0

Explanation:

a = 400

b = 600

print(a > 500 and b > 1000)

output : False

Similar questions