Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created April 17, 2014 01:13
Show Gist options
  • Save yuuichi-fujioka/10946480 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/10946480 to your computer and use it in GitHub Desktop.
random text
import string
import random
length = 10
print ''.join([random.choice(string.ascii_letters + string.digits) for i in range(length)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment