Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- best_player = ''
- most_goals = 0
- while True:
- name_of_player = input()
- if name_of_player == 'END':
- break
- goals = int(input())
- if goals > most_goals:
- most_goals = goals
- best_player = name_of_player
- if goals >= 10:
- break
- print(f'{best_player} is the best player!')
- if most_goals >= 3:
- print(f'He has scored {most_goals} goals and made a hat-trick !!!')
- else:
- print(f'He has scored {most_goals} goals.')
Advertisement
Add Comment
Please, Sign In to add comment