मराठी

Write a program to create a series of objects using a dictionary that stores the number of students in each house of class 12D of your school. Note: Assume four house names are Beas, Chenab, Ravi

Advertisements
Advertisements

प्रश्न

Write a program to create a series of objects using a dictionary that stores the number of students in each house of class 12D of your school.

Note: Assume four house names are Beas, Chenab, Ravi, and Satluj having 18, 2, 20, and 18 students respectively and pandas library has been imported as pd.

एका वाक्यात उत्तर
Advertisements

उत्तर

St = {‘Beas’ :18, ‘Chenab’ :20 , ‘ Ravi’ :20, ‘ Satluj’ :18}

S1 = pd.Series(St)

shaalaa.com
A Series
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2022-2023 (March) Sample

संबंधित प्रश्‍न

Assertion (A): To create a series from array, we have to import the NumPy module and then use array () method.

Reason (R): NumPy is an open-source numerical Python library. NumPy contains a multi-dimensional array and matrix data structures.


Select the correct statement:


Pandas Series is a ______.


Give the output of:

s=pd.Series([10,20,30,40,50],index =[‘a’,‘b’,‘c’,0,1])
print(s.loc[1])


By default, Series.tail() function display last ______ rows.


Given a Pandas series called “S”, the command which will delete the 1st row(index value 0) ______.


Write Python series to print scalar value “10” 5 times.


Size and values of data of Series are ______.


Select code to show rows where values of series M1 greater than 75.


The keys of the dictionary are used to represent the ______ of the Series.


Give the output.

import pandas as pd
s=pd.Series([1,2,3,4,5])
s.drop(2)
print(s.size)

Series to print scalar value “100” 5 times:


Which code is correct to show rows those empno are greater than 103?

empno=[101,102,103,104,105,106,107]
p=pd.Series(empno)


Consider the following series named Result.

Rohan 90
Aman 60
Divya 34
Jeet 78
Raj 25
Jyoti 85
Gagan 32

Write the output of the command:

print(Result[: :-1])


Write the output of the given command:

import pandas as pd
s=pd.Series([10,20,30,40,50],[1,2,3,4,5])
print(s.loc[2])

Write the output of the given command:

import pandas as pd
s=pd.Series([10,20,30,40,50],[1,2,3,4,5])
print(s[2]+s.iloc[2])

Write the output of the given command:

import pandas as pd
s=pd.Series([10,20,30,40,50],[1,2,3,4,5])
print(s.loc[2]*2)

To display the last five rows of a series object ‘S’, you may write ______


Which of the following statement will import pandas library?


What will be the output of the following code:

>>>import pandas as pd
>>>A = pd.Series(data = [35, 45, 55, 40])
>>>print(A > 45)

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×