What will the following code output?
x=0if x: print("True")else: print("False")
A. True
B. False
C. None
D. Error
0 is considered False in Python.