I want to write a python program that will simulate 3 dice being rolled at the same time but I want the 3 dice to always have a different number from each other every time they are rolled. ex on the first roll I get 2,1,6 that is fine but I dont want the prog. to ever roll duplicates for ex 2,4,2. (3,3,3, would also be unacceptable)
# generating random numbers 1 - 6
die1 = random.randint(1, 6)
die2 = random.randrange(1, 6)
die3 = random.randrange(1, 6)
this is all I have so far, im a beginner ... Thanks