Get your own Python server Result Size: 625 x 565
x
 
import pandas as pd
data = {
  "points": [4, 5, 6],
  "total": [10, 12, 15]
}
df = pd.DataFrame(data)
print(df.pow(5))
     points   total
  0    1024  100000
  1    3125  248832
  2    7776  759375