following is a preview of a marketing dataframe. Complete the code to get desired output
   id  views  clicks
a  1   1000   300
b  2   1200   800
c  3   800    200
output
   views  clicks
a  1000   300
what should i change in my code to get this output
import pandas as pd
market=pd.read_csv("marketing.csv")
print(market.iloc[0])
 
    