English

Write a Python program to create the Pandas DataFrame displayed below using a list of dictionaries .0, 1, 2 Course Data Science, Artificial Intelligence, Web Development - Informatics Practices

Advertisements
Advertisements

Question

Write a Python program to create the Pandas DataFrame displayed below using a list of dictionaries.

  Course Duration
0 Data Science 12
1 Artificial Intelligence 18
2 Web Development 6
Code Writing
Advertisements

Solution

import pandas as pd
d1 = {'Course': 'Data Science', 'Duration': 12}
d2 = {'Course': 'Artificial Intelligence', 'Duration': 18}
d3 = {'Course': 'Web Development', 'Duration': 6}
data = [d1, d2, d3]
df = pd.DataFrame(data)
print(df)
shaalaa.com
  Is there an error in this question or solution?
2025-2026 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×