1# Test true-ish value handling 2 3if not 0.0: 4 print("float 0") 5 6if not 0 + 0j: 7 print("complex 0") 8