Skip to content

Instantly share code, notes, and snippets.

@akionsight
Last active October 16, 2020 07:30
Show Gist options
  • Save akionsight/12cad14db094c09f1fb460f28a6dcddc to your computer and use it in GitHub Desktop.
Save akionsight/12cad14db094c09f1fb460f28a6dcddc to your computer and use it in GitHub Desktop.
test random.choice
import random
list_of_movies_to_watch = ['harry potter', 'percy jackson', 'the matrix', 'men in black']
print(random.choice(list_of_movies_to_watch))
## any of the following movies will printed eg 'the matrix'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment