8 lines
104 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# Test true-ish value handling
if not 0.0:
print("float 0")
if not 0 + 0j:
print("complex 0")