Skip to content

Instantly share code, notes, and snippets.

@shouhei
Last active December 11, 2015 05:44
Show Gist options
  • Select an option

  • Save shouhei/c5ff05ecf1cb7fdcb1cc to your computer and use it in GitHub Desktop.

Select an option

Save shouhei/c5ff05ecf1cb7fdcb1cc to your computer and use it in GitHub Desktop.
ランダム文字列python
import string
from random imoprt randint
def rand_str(length):
return ''.join(map(str,[source[randint(0, len(source) -1) ] for x in range(0,length)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment