Skip to content

Instantly share code, notes, and snippets.

@qoda
Last active December 16, 2015 01:29
Show Gist options
  • Select an option

  • Save qoda/5355023 to your computer and use it in GitHub Desktop.

Select an option

Save qoda/5355023 to your computer and use it in GitHub Desktop.
Random String Generation
random_string = "".join(random.choice(string.hexdigits + string.digits) for r in [i for i in range(16)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment