Lessons
Class 12 Python Pandas 1 MCQ | Python Pandas 1 Quiz Class 12
PreviewPython Pandas 2 Class 12 Informatics Practices Multiple Choice Questions 2023
PreviewPython Pandas 2 Class 12 Informatics Practices Multiple Choice Questions 2023 [ays_quiz id=’39’]
Class 12 Informatics Practices Practical file 2024-2025
PreviewClass 12 Informatics Practices Practical file 2024-2025 1.Create a Series with following lists: section=[‘A’,’B’,’C’,’D’,’E’] #INDEXES strength=[40,38,33,35,30] #DATA import pandas as pd import numpy as np section=[‘A’,’B’,’C’,’D’,’E’] strength=[40,38,33,35,30] s=pd.Series(index=section,data=strength) print(s) Output A 40 B 38 C 33 D 35 E 30 dtype: int64 2. Create a Series by using following dictionary: Department={‘Computer’:30,’Finance’:20,’HR’:5} strength=[40,38,33,35,30] #DATA import pandas …