how to randomly select 3 no in python code example
Example 1: how to tell python to create a random numer
#to choose a random number simply do this
import random
print(random.randint(1, 100))
Example 2: three different randomn numbers python
>>> option1, option2, option3 = random.sample(range(1, 4), 3)
>>> option1, option2, option3
(3, 1, 2)