Examples
import numpy as np import pandas as pd
df = pd.DataFrame({'angles': [0, 3, 4], 'degrees': [360, 180, 360]}, index=['circle', 'right triangle', 'rhombus']) df
df.pow
<bound method _arith_method_FRAME.<locals>.f of angles degrees circle 0 360 right triangle 3 180 rhombus 4 360>
df.rpow