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