Skip to content

Instantly share code, notes, and snippets.

@zeyneloz
Created July 15, 2019 21:34
Show Gist options
  • Save zeyneloz/001d88ec89493a3f53dfd14decb69247 to your computer and use it in GitHub Desktop.
Save zeyneloz/001d88ec89493a3f53dfd14decb69247 to your computer and use it in GitHub Desktop.
import random
spaceships = {...}
key_list = list(spaceships.keys())
def get_random_ship():
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