Skip to content

Instantly share code, notes, and snippets.

@7kry
Created May 3, 2014 07:31
Show Gist options
  • Save 7kry/7fd6840b8d91743c902c to your computer and use it in GitHub Desktop.
Save 7kry/7fd6840b8d91743c902c to your computer and use it in GitHub Desktop.
import random
def shuffle(s):
return "".join(map(lambda i: random.choice(s), s))
shuffle("クピドゥレビュー")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment