हिंदी

Write a Python code to create a DataFrame with appropriate column headings from the list given below: [[101,'Gurman',98], [102,'Rajveer',95], [103,'samar' ,96], [104,'Yuvraj',88]] - Informatics Practices

Advertisements
Advertisements

प्रश्न

Write a Python code to create a DataFrame with appropriate column headings from the list given below:

[[101,'Gurman',98], [102,'Rajveer',95], [103,'Samar' ,96], [104,'Yuvraj',88]]

टिप्पणी लिखिए

उत्तर

import pandas as pd
data = [[101,'Gurman',98], [102,'Rajveer',95], [103,'Samar' ,96], [104,'Yuvraj',88]]
df = pd.DataFrame(data, columns = ['Rno','Name', 'Marks'])

shaalaa.com
Introduction to Python Libraries
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2022-2023 (March) Sample
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×