Iolite_Jay
0
Q:

dice rolling simulator python

from random import randint

def roll_dice():
    print(f"Number is: {randint(1,6)}")

# Do this to simulate once
roll_dice()   

# Do this to simulate multiple times
whatever = 12 # Put the number of times you want to simulate here
for number in range(0,whatever):
    roll_dice()
0
#For one time roll
from random import randint

dice_roll = randint(1,6) 
#You can change numbers to anything you want, it can go up to 1 million if you really want it to
print("You Threw a", dice_roll)
#That's for one time throw but if you want it for multiple people then do this

#For multiple roles 
import time
from random import randint
for j in range(10):
    dice_roll = randint(1,6)
    time.sleep(3)
    print("You threw a", dice_roll)

-1

New to Communities?

Join the community