Informatics Practices
Give the output of the following:
print (10 != 9 and 20 >= 20)
Python Control Flow
2 Likes
Answer
True
Working
The expression 10 != 9 and 20 >= 20 evaluates to True because both conditions separated by the and operator are true. Specifically, 10 != 9 is true because 10 is not equal to 9, and 20 >= 20 is true because 20 is equal to 20.
Answered By
2 Likes
Related Questions
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = float(10) print(num1)Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = int('3.14') print(num1)Give the output of the following:
print(5 % 10 + 10 < 50 and 29 <= 29)What is the difference between else and elif constructs of if statement?