Advertisements
Advertisements
Question
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print((0 < 6) or (not(10 == 6) and (10 < 0)))
Solution
print( (0 < 6) or (not (10 == 6) and (10 < 0) ) )
print(True or (not False and False))
print(True or (True and False))
# not will be evaluated before and/or.
print(True or False)
print(True)
Therefore, the output will be 'True'.
APPEARS IN
RELATED QUESTIONS
Add a pair of parentheses to the expression so that it evaluates to True.
0 == 1 == 2
Add a pair of parentheses to the expression so that it evaluates to True.
2 + 3 == 4 + 5 == 7
Add a pair of parentheses to the expression so that it evaluates to True.
1 < -1 == 3 > 4
A dartboard of radius 10 units and the wall it is hanging on is represented using a two-dimensional coordinate system, with the board’s center at coordinate (0, 0). Variables x and y store the x-coordinate and the y-coordinate of a dart that hits the dartboard. Write a Python expression using variables x and y that evaluates to True if the dart hits (is within) the dartboard, and then evaluate the expression for these dart coordinates:
- (0, 0)
- (10, 10)
- (6, 6)
- (7, 8)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print(10 != 9 and 20 >= 20)