Skip to content

Instantly share code, notes, and snippets.

@mookjp
Last active December 12, 2015 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mookjp/4732480 to your computer and use it in GitHub Desktop.
Save mookjp/4732480 to your computer and use it in GitHub Desktop.
レッッビビドド・ョペオレーンシ
# -*- coding: utf-8 -*-
import random
def vivid():
return u'・'.join([ ''.join(random.sample(item, len(item))) for item in [ list(item) for item in u'ビビッドレッド・オペレーション'.split(u'・') ] ])
if __name__ == '__main__':
# Infinite loop
while True:
print vivid()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment