Help with dice challenge!
I have tried all ways i can think to execute this program, but its not being accepted. it meets the criteria
import random
roll = 0
while roll < 10:
roll = roll + 1
first_die = random.randint(1, 6)
second_die = random.randint(1, 6)
dice_sum = first_die + second_die
print("Roll #" + str(roll) + " dice sum is " + str(dice_sum) + ".")
Yorum yazmak için lütfen oturum açın.