Ejemplo 1: Python del simulador de lanzamiento de dados
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(whatever):
roll_dice()
Ejemplo 2: pitón de tirar dados
import random
diceRoll = random.randint(1, 6)
print(diceRoll)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)