Q. What will be the output of the following Python code?
Code:
a=7
if a>4: print("Greater")
β
Correct Answer: (A)
Greater
a=7
if a>4: print("Greater")
You must be Logged in to update hint/solution