Created
April 17, 2014 01:13
-
-
Save yuuichi-fujioka/10946480 to your computer and use it in GitHub Desktop.
random text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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