Skip to content

Instantly share code, notes, and snippets.

@zeyneloz
Created July 15, 2019 21:32
Show Gist options
  • Save zeyneloz/b177130b0bc49b2c717661e58aea1399 to your computer and use it in GitHub Desktop.
Save zeyneloz/b177130b0bc49b2c717661e58aea1399 to your computer and use it in GitHub Desktop.
import random
spaceships = {...}
def get_random_ship():
key_list = list(spaceships.keys())
# Pick a random key from key list
id = random.choice(key_list)
return spaceships[id]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment