1. Batsman with best strikerate and average in different total runs range a. 1-1000, 1000-2000, 2000-3000 and so on up to maximum runs.
2. Find Best bowler and best batsman.
3. Maximum catches, maximum extra runs, etc.
4. Any other question of your choice.
s_rate = int(input('Enter strikerate here: '))
if 1 <= s_rate < 1000:
print('bad')
elif 1000 <= s_rate < 2000:
print('average')
else:
print('good')
Comments
Leave a comment