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