import random dice1 = random.randint(1, 10) dice2 = random.randint(1, 10) score = dice1 + dice2 score = 0 print("Roll 1 -----------------") print("Your roll is", dice1, "and", dice2) print("Your total score is", score) rollretry = input("Do you want to roll again. Y/N? ")