Skip to content

Instantly share code, notes, and snippets.

@acatejr
Last active August 29, 2015 14:04
Show Gist options
  • Save acatejr/06305103b75d43ed76fe to your computer and use it in GitHub Desktop.
Save acatejr/06305103b75d43ed76fe to your computer and use it in GitHub Desktop.
Python Random String
import random
import string
string_length = 10
random_string = u''.join(random.choice(string.ascii_letters) for x in range(string_length))
print random_string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment