English

Sneha is writing a Python program to create a DataFrame using a list of dictionaries. However, her code contains some mistakes. Identify the errors, rewrite the correct code, - Informatics Practices

Advertisements
Advertisements

Question

Sneha is writing a Python program to create a DataFrame using a list of dictionaries. However, her code contains some mistakes. Identify the errors, rewrite the correct code, and underline the corrections made.

import Pandas as pd
D1 = {'Name': 'Rakshit', 'Age': 25}
D2 = {'Name': 'Paul', 'Age': 30}
D3 = {'Name': 'Ayesha", 'Age': 28}
data = [D1, D2, D3)
df = pd.Dataframe(data)
print(df) 
Code Writing

Solution

import pandas as pd
D1 = {'Name:' ‘Rakshit, ‘Age’: 25}
D2 = {'Name': ‘Paul’, ‘Age: 30}
D3 = {'Name': ‘Ayesha’, ‘Age’: 28}
data = [D1, D2, D3]
df = pd.DataFrame(data)
print(df) 

Changes Made:

  1. Changed Pandas to pandas.
  2. Corrected mismatched string quotation marks.
  3. Corrected the closing parenthesis in the list data.
  4. Changed Dataframe to DataFrame.
shaalaa.com
  Is there an error in this question or solution?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×