Codehs 4.3.5 Rolling Dice Answers Online
def roll_die(): roll = random.randint(1, 6) return roll
print(roll_die())
In the context of CodeHS 4.3.5, the random.randint(1, 6) function generates a random integer between 1 and 6, simulating the roll of a fair die. Over a large number of rolls, we expect each outcome to occur with a frequency close to 1/6. codehs 4.3.5 rolling dice answers
for _ in range(num_rolls): roll = roll_die() outcomes[roll - 1] += 1 def roll_die(): roll = random