138k views
14 votes
Create a Python console application following the requirements below to allow the entry of 6 bowlers' scores

for a bowling game. After that, the average, minimum and maximum scores are determined, and all results
displayed.

User Jvinyard
by
6.2k points

1 Answer

10 votes

Average

a=[scores]

ans=0

max=max(a)

min=min(a)

for i in a:

ans+=i

ans=ans/len(a)

User Dazedandconfused
by
6.3k points