Ya no necesitas buscar más por todo internet porque estás al sitio justo, poseemos la respuesta que buscas sin problemas.
Ejemplo 1: simulador de lanzamiento de dados python
from random import randint
defroll_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 herefor number inrange(whatever):
roll_dice()
Ejemplo 2: cómo hacer un dado en python
#For one time rollfrom 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 toprint("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 inrange(10):
dice_roll = randint(1,6)
time.sleep(3)print("You threw a", dice_roll)
Sección de Reseñas y Valoraciones
Si te apasiona este mundo, tienes la habilidad dejar una reseña acerca de qué le añadirías a este escrito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)