Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- def dices_rolled(n):
- dice1 = [1,2,3,4,5,6]
- for item in range(n):
- print (random.choice(dice1),"&",random.choice(dice1))
- dices_rolled(int(input("how many times to roll ?")))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement