#refresh rollamount = 0 continue1 = total1 = 0 #import for random import random #what numbers are apart of the random choice dice1 = random.randint ( 1, 6 ) #what numbers are apart of the random choice dice2 = random.randint ( 1, 6 ) #while code while continue1 == 0 : print ("roll", rollamount, "---------------------") print (dice1) print (dice2) total1 = dice1 + dice2 + total1 print ("Your score is", total1) continue1 = input ("do you want to continue baby girl rizzler")