Q. What will be the output of this code?
Code:
print(bool(''))
β
Correct Answer: (B)
False
Explanation: An empty string is considered False in a boolean context.