Computer Science, asked by saikrishnaboinipelly, 14 hours ago

x = 30
if x <= 10 or x >= 75:
print('True')
elif x <= 15 or x >= 55:
print('not True')
elif x <= 25 or x >= 35:
print('false')
else:
print('not False')​

Answers

Answered by dave09
0

Answer:

x=30

75

55

35

Explanation:

false

true

Similar questions