Basically, I have a question about cricket, and getting the user to input their score for each of the 6 bowls by using a while loop, and then give them the total of the over at the end. This is the code I have done, but it doesn't work, and I'm not sure on how to make it right.
cricket_balls=0
while cricket_balls < 6:
score= int(input('What was the score of bowl', cricket_balls , '?:' )
cricket_balls = cricket_balls + 1
print (score)
total_score = score
print ('The total score for this over is', total_score)