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(0,whatever):
roll_dice()