What will be the output given by following python code
statements ?
(i) print(17 % 5)
(ii) print(25%5 + 7 >= 9//2)
(iii)print(“Hello”+”World”)
(iv)print( 6**2 > 32//2 and 5**2==25)
Answers
Answered by
5
Answer:
(iv)print( 6**2 > 32//2 and 5**2==25)
Similar questions