You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
8 lines
128 B
Python
8 lines
128 B
Python
# test builtin pow() with integral values
|
|
# 2 arg version
|
|
|
|
print(pow(0, 1))
|
|
print(pow(1, 0))
|
|
print(pow(-2, 3))
|
|
print(pow(3, 8))
|