summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/int_power.py
blob: bcda0f98ed682e215c1a5668a45e1d89503a486b (plain) (blame)
1
2
3
4
5
6
7
8
# negative power should produce float

x = 2
print(x**-2)

x = 3
x **= -2
print("%.5f" % x)