Q. What will be the output of the following Python code?
Code:
i=5
if i>11 : print ("i is greater than 11")
β
Correct Answer: (C)
Both A and B
i=5
if i>11 : print ("i is greater than 11")
You must be Logged in to update hint/solution