Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History
 
 

q03_get_toss_win_count

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

In our dataset, in how many matches the team 'Mumbai Indians' has won the toss?

Well you have done good so far!!

Do you know why 'Mumbai Indians' has won the most number of IPL seasons so far? Mumbai Indians loves chasing as they have some excellent finishers from across the globe in their team. Being so strong while chasing, Mumbai Indians stress a lot on winning the toss.

Their ideology is simple:

Win the TOSS and win the MATCH

One way the team can optimise its performance is by finding the number of tosses won by the team.

Write a function get_toss_win_count that :

  • Extracts the set of team records along with the team that won the toss.

PARAMETERS:

Parameter dtype argument type default value description
team String compulsory team which you want to know the toss statistics

RETURNS:

Parameter dtype description
variable int total no. of tosses won

Note :Solve this Assignment using Numpy only