Skip to content

Instantly share code, notes, and snippets.

@AlexeyMK
Last active December 15, 2015 20:49
Show Gist options
  • Save AlexeyMK/5321752 to your computer and use it in GitHub Desktop.
Save AlexeyMK/5321752 to your computer and use it in GitHub Desktop.
permute some letters
import string
from random import shuffle
alphabet = list(string.lowercase + string.digits)
shuffle(alphabet)
print "".join(alphabet)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment