Computer Science, asked by eshanik1524, 3 months ago

write a program to do the following tasks :To calculate the run rate if a cricketer strikes 45 runs in 2 overs clue-(1over=6balls.runrate=runs/no.of balls played)​

Answers

Answered by parvewn2010
0

Answer:

 I am writing a function batting_stats to show the batting statistics for each innings throughout a batsman's career. The input to the function is a list of lists of integers. The top level list contains a list of innings while the inner lists contain the runs scored, balls faced, and a Boolean (1=out or 0=not out) indicating whether or not the batsman was dismissed during the innings. The function is to return a list of lists of integers representing the batsman's average, strike rate and conversion rate for each of these innings.

Similar questions