Skip to content

Instantly share code, notes, and snippets.

@mitchellbusby
Created May 11, 2012 07:33
Show Gist options
  • Save mitchellbusby/2658159 to your computer and use it in GitHub Desktop.
Save mitchellbusby/2658159 to your computer and use it in GitHub Desktop.
not implemented
import random
string = " "
times = input("Enter amount of characters: ")
for i in xrange(times):
num = random.randint(97,122)
character = chr(num)
string += character
print string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment