Get Random Element From Array using Python October 9, 2020 Python 0 Comments 402 Views random module import random data = [10, 3, 17, 50, 15] element = random.choice(data) print(element)
Leave a Comment
Cancel reply