English

Consider the DataFrame df shown below. 0 1 2 3 4 MovieID 1 2 3 4 5 Title LAGAAN TAARE ZAMEEN PAR 3 IDIOTS DANGAL ANDHADHUN Year 2001 2007 2009 2016 2018 Rating8.4 8.5 8.4 8.4 8.3 - Informatics Practices

Advertisements
Advertisements

Question

Consider the DataFrame df shown below.

  MovieID Title Year Rating
0 1 LAGAAN 2001 8.4
1 2 TAARE ZAMEEN PAR 2007 8.5
2 3 3 IDIOTS 2009 8.4
3 4 DANGAL 2016 8.4
4 5 ANDHADHUN 2018 8.3

Write Python statements for the DataFrame df to:

  1. Print the first two rows of the DataFrame df.
  2. Display titles of all the movies.
  3. Remove the column rating.
  4. Display the data of the 'Title' column from indexes 2 to 4 (both included).
  5. Rename the column name 'Title' to 'Name'.
Code Writing

Solution

  1. print(df.head(2))
  2. print(df['Title'])
  3. df = df.drop(‘Rating’, axis=1)
  4. print(df.loc[2:4,'Title'])
  5. df.rename(columns={'Title':'Name'}, inplace=True) 
shaalaa.com
  Is there an error in this question or solution?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×