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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?