Skip to content

Instantly share code, notes, and snippets.

@Blucknote
Last active September 24, 2020 11:58
Show Gist options
  • Save Blucknote/f61c1eb743ead4b54361c80ea4c9240a to your computer and use it in GitHub Desktop.
Save Blucknote/f61c1eb743ead4b54361c80ea4c9240a to your computer and use it in GitHub Desktop.
dummy random letters
from random import choice
STR_LEN = 10
randomize = lambda: ''.join([chr(choice(range(97, 123))) for y in range(STR_LEN+1)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment