Question 1
Given the following code snippet, what will be the output?
if None:
print("None is True")
elif 0:
print("0 is True")
elif "":
print("Empty string is True")
else:
print("All False")
None is True
0 is True
Empty string is True
All False