Last active
December 16, 2015 01:29
-
-
Save qoda/5355023 to your computer and use it in GitHub Desktop.
Random String Generation
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
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