three different randomn numbers python

Solutions on MaxInterview for three different randomn numbers python by the best coders in the world

showing results for - "three different randomn numbers python"
Malena
24 Jan 2020
1>>> option1, option2, option3 = random.sample(range(1, 4), 3)
2>>> option1, option2, option3
3(3, 1, 2)