Advertisements
Advertisements
Question
The Python code written below has syntactical errors. Rewrite the correct code and underline the correction(s) made.
import Pandas as pd
stud=['Name':'Ramya','Class':11, 'House':'Red']
s=p.Series(s)
print(s)
Code Writing
Solution
import Pandas as pd#
Syntactical error: 'Pandas' should be 'pandas'
stud=['Name': 'Ramya', 'Class': 11, 'House': 'Red'] #
Syntactical error: Should use curly braces {} instead of square brackets []
s=p.Series(s)#
Syntactical error: 'p.Series(s)' should be 'pd.Series(stud)' print(s)
Correct Code:
import pandas as pd
stud= {'Name': 'Ramya', 'Class': 11, 'House': 'Red'}
s = pd.Series(stud)
print(s)
shaalaa.com
Is there an error in this question or solution?