int_power.py 94 B

12345678
  1. # negative power should produce float
  2. x = 2
  3. print(x ** -2)
  4. x = 3
  5. x **= -2
  6. print('%.5f' % x)