df['Result'] = df['Column A']/df['Column B']
# We use the .div() method to divide colum/colum2 df['New_Column'] = df.colum.div(df.colum2)