Python - Data Types as Values
Identify the bug in this code:
items = [0, 1, 2]
for item in items:
if item:
print("Falsy")
else:
print("Truthy")