mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
8 lines
102 B
Python
8 lines
102 B
Python
# Test true-ish value handling
|
|
|
|
if not 0.0:
|
|
print("float 0")
|
|
|
|
if not 0+0j:
|
|
print("complex 0")
|