Помогите пожалуйста с заданием.
Нужно чтобы игра повторялась пока игрок или компьютер не наберет 3 пункта.
После обьявления кто победил нужно чтобы выводился итоговый счет.
Спасибо.
from random import randint
print('Enter 1 for Rock, 2 for Paper, 3 for Scissors')
user = int(input('Your turn: ‘))
chosen = randint(1, 3)
if user==1:
user=’Rock'
elif user==2:
user='Paper'
else:
user='Scissors'
if chosen==1:
computer='Rock'
elif chosen==2:
computer='Paper'
else:
computer='Scissors'
print(user,'vs.', computer)
if user==computer:
print('Draw')
elif user=='Scissors' and computer=='Paper':
print('User wins this round')
elif user=='Scissors' and computer=='Rock':
print('Computer wins this round')
elif user=='Paper' and computer=='Scissors':
print('Computer wins this round')
elif user=='Paper' and computer=='Rock':
print('User wins this round')
elif user=='Rock' and computer=='Paper':
print('Computer wins this round')
elif user == ‘Rock’ and computer == ‘Scissors’:
print('User wins this round')