Q. Write the output of the following code
Code:
if True:
print("Hello")
else:
print("Bye")
β
Correct Answer: (B)
Hello
if True:
print("Hello")
else:
print("Bye")
You must be Logged in to update hint/solution