A Residence association planned to select three houses for an event among 144(house no.1-144) houses. Write a python program to help them to select 3 houses randomly.
Answers
Answered by
1
Answer:
#random module is used to work with random data
import random
a = range(1,144)
b = random.choice(a)
print(b)
Similar questions