Computer Science, asked by nigamc63, 7 months ago

2. a=23
b=25
print(a==100 or b<26)​

Answers

Answered by Anonymous
6

Answer:

a=23

b=25

print(a==100 or b<26)

b<26

Answered by nishamerin12
4

Explanation:

Output will be True

a==100 is False

b<26 is True

For 'or' operator, False condition and True condition gives True

Similar questions