Skip to content

Program-1.py

1
2
3
4
5
6
7
# Choose a Random Element from a List.

import random

lst = [10, 20, 30, 40, 50]

print("Random Element : ", random.choice(lst))