Advertisements
Advertisements
Question
Write a single line command to calculate 10% from ‘sale’ column from dataframe df and assign to new column ‘Commission’.
Options
df.insert[‘Commission’]=df.sale*10/100
df[‘Commission’]=df.sale*10/100
df.loc[‘Commission’]=df.sale*10/100
df[‘Commission’,axis=1]=df.sale*10/100
MCQ
Solution
df.insert[‘Commission’]=df.sale*10/100
shaalaa.com
DataFrame
Is there an error in this question or solution?