Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created July 11, 2021 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/afa57cb2306fd1ec61bd7baef89a0e9a to your computer and use it in GitHub Desktop.
Save fatosmorina/afa57cb2306fd1ec61bd7baef89a0e9a to your computer and use it in GitHub Desktop.
import random
my_list = ['a', 'b', 'c', 'd', 'e', 'f']
my_list_length = len(my_list)
random_index = random.randint(0, my_list_length)
print(my_list[random_index])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment