9 lines
92 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# negative power should produce float
x = 2
print(x**-2)
x = 3
x **= -2
print("%.5f" % x)