Python - Data Types as Values
What will be the output of this code snippet?
def check(value):
if value:
return "Truthy"
else:
return "Falsy"
print(check([]))
print(check([0]))