Skip to content

Instantly share code, notes, and snippets.

@tats-u
Created March 13, 2016 15:15
Show Gist options
  • Save tats-u/b2c64cf4579dc0ec156e to your computer and use it in GitHub Desktop.
Save tats-u/b2c64cf4579dc0ec156e to your computer and use it in GitHub Desktop.
キヨシズンドコ節 in Python3 (Zlib license/Copyright © 2016 Tats.U.)
from random import *
seed()
count = 0
tbl = ("ズン", "ドコ")
while count < 5:
rnd = randrange(2)
if count < 4:
if rnd == 0:
count += 1
else:
count = 0
else:
if rnd == 1:
count += 1
print(tbl[rnd], end=" ")
print("キ・ヨ・シ!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment