You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
fde54350a8
The latter is shorter and simpler because it doesn't require importing the sys module.
17 lines
370 B
Python
17 lines
370 B
Python
# Test the bool functions from math
|
|
|
|
try:
|
|
from math import isfinite, isnan, isinf
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
test_values = [1, 0, -1, 1.0, 0.0, -1.0, float('NaN'), float('Inf'),
|
|
-float('NaN'), -float('Inf')]
|
|
|
|
functions = [isfinite, isnan, isinf]
|
|
|
|
for val in test_values:
|
|
for f in functions:
|
|
print(f(val))
|