Www.mystudyzone.com

Write a python code to create a dataframe using Series() function with appropriate headings such as Rollno, name and percentage from the list given below: [ 101,’Rajesh’, 75 ] , [ 103, ‘Yogesh’, 88 ] , [ 104, ‘Kapil’, 90 ] Ans import pandas as pd . Rolln=pd.Series([101,103,104]) ... ................
................