true_value.py 102 B

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