हिंदी

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

प्रश्न

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
कोड लेखन
Advertisements

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2025-2026 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×