May 2019

3. Three Series objects stores the marks of 10 students in three terms. Roll numbers of students form the index of these Series objects. The Three Series objects have the same indexes. Calculate the total weighted marks obtained by students as per following formula :

Calculate the total weighted marks obtained by students as per following formula : Final marks = 25% Term 1 + 25% Term 2 + 50% Term 3 Store the Final marks of students in another Series object. # Code import pandas as pd roll = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] […]

3. Three Series objects stores the marks of 10 students in three terms. Roll numbers of students form the index of these Series objects. The Three Series objects have the same indexes. Calculate the total weighted marks obtained by students as per following formula : Read More »

2. Write a program that stores the sales of 5 fast moving items of a store for each month in 12 Series objects, i.e., S1 Series object stores sales of these 5 items in 1st month, S2 stores sales of these 5 items in 2nd month, and so on.

The program should display the summary sales report like this : Total Yearly Sales, item-wise (should display sum o f items’ sales over the months) Maximum sales of item made : Maximum sales for individual items Maximum sales o f item 1 made : Maximum sales o f item 2 made : Maximum sales o

2. Write a program that stores the sales of 5 fast moving items of a store for each month in 12 Series objects, i.e., S1 Series object stores sales of these 5 items in 1st month, S2 stores sales of these 5 items in 2nd month, and so on. Read More »