# This code is provided by Sheetal Verma
# Importing pandas library
import pandas as pd
# Creating dictionary of Series
dict1 = {'Auth_Name': pd.Series(['Jitender',
'Purnima', 'Arpit', 'Jyoti'],
index=['SNo1', 'SNo2', 'SNo3', 'SNo4']),
'Author_Book_No': pd.Series([210, 211, 114, 178],
index=['SNo1', 'SNo2', 'SNo3', 'SNo4']),
'Age': pd.Series([21, 21, 24, 23],
index=['SNo1', 'SNo2', 'SNo3', 'SNo4'])}
# Creating Dataframe
df = pd.DataFrame(dict1, index=['SNo1', 'SNo2', 'SNo3', 'SNo4'])
# Printing dataframe
print(df)