Python - Data Types as Values
The following code is intended to print "Falsy" if
val is falsy, but it always prints "Truthy". What is the error?val = 0
if val == False:
print("Falsy")
else:
print("Truthy")