Skip to content

Instantly share code, notes, and snippets.

@williln
Created November 19, 2020 16: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 williln/9d5a372d00b1be2679dac41449c0352a to your computer and use it in GitHub Desktop.
Save williln/9d5a372d00b1be2679dac41449c0352a to your computer and use it in GitHub Desktop.
Choose someone from a list
import random
def choose(people):
return people[random.randint(0, len(people) - 1)]
people = ["Amelia", "Manuel"]
print(choose(people))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment