Skip to content

Instantly share code, notes, and snippets.

@karmadonov
Created May 2, 2012 13:06
Show Gist options
  • Save karmadonov/2576418 to your computer and use it in GitHub Desktop.
Save karmadonov/2576418 to your computer and use it in GitHub Desktop.
Python random string generator
from random import choice
import string
chars = string.letters + string.digits # Python 2
chars = string.ascii_letters + string.digits # Python 3
rand_name = lambda x: ''.join(choice(chars) for i in range(x))
>>> rand_name(5)
'Hxm7y'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment