Python membagi satu kolom dengan yang lain
df['Result'] = df['Column A']/df['Column B']
Victorious Vole
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)