91.py 1 2 3 4 5 6 7 8 9import random items = input("Enter List Items : ").split() if items: print(random.choice(items)) else: print("List Is Empty")