DEBSOURCES
Skip Quicknav
sources / giac / 1.9.0.93%2Bdfsg2-3 / micropython-1.12 / tests / float / int_power.py
12345678
# negative power should produce float x = 2 print(x ** -2) x = 3 x **= -2 print('%.5f' % x)