Python Programming Language MCQ Python if else MCQ
⚠ Report ✓ Question Verified Copy Link
x = 68 if x <= 50 and x >= 25: print('true') elif x <= 60 or x >= 55: print('not true') elif x <= 70 and x >= 35: print('false') else: print('not false')
Learn More MCQ Questions from Python Programming Language MCQ Python if else MCQ