Skip to content

Instantly share code, notes, and snippets.

@perpouh
Created August 1, 2019 03:05
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 perpouh/9b8d7273ad58f305ea4bc19d4fbafc72 to your computer and use it in GitHub Desktop.
Save perpouh/9b8d7273ad58f305ea4bc19d4fbafc72 to your computer and use it in GitHub Desktop.
ポプテピピック
import random
pptp = ["ポ","プ","テ","ピ","ピ","ッ","ク"]
while True:
random.shuffle(pptp)
s = ''.join(pptp)
print(s)
if s == 'ポプテピピック': break;
@perpouh
Copy link
Author

perpouh commented Aug 1, 2019

gistは8タブなのか……

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment