Q. Write the output of the following:
Code:
if (3+8//2 != 7):
print("H")
else:
print("B")
β
Correct Answer: (B)
B
if (3+8//2 != 7):
print("H")
else:
print("B")
You must be Logged in to update hint/solution