Skip to content

Instantly share code, notes, and snippets.

@cpjobling
Last active November 15, 2019 16:31
Show Gist options
  • Save cpjobling/c597abdd626e0a2350ee0f58099ad417 to your computer and use it in GitHub Desktop.
Save cpjobling/c597abdd626e0a2350ee0f58099ad417 to your computer and use it in GitHub Desktop.
Random shuffle a list of EG-252 groups for assessment, tec
import random
teams = ["alpha","bravo","charlie","delta","echo",
"foxtrot","golf","hotel","india","juliet",
"kilo","lima","mike","november","oscar"]
random.shuffle(teams)
print(teams)
# ['lima', 'bravo', 'oscar', 'november', 'foxtrot', 'echo', 'alpha', 'mike', 'golf', 'delta', 'charlie', 'kilo', 'india', 'juliet', 'hotel']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment