write the python program to generate a random no.
Answers
Answered by
1
Answer:
import random
a= [1,2,3,4,5]
b=random.choice(a)
print (b)
Hope this helps!
Similar questions