Skip to content

Instantly share code, notes, and snippets.

@edy4c7
Created March 13, 2016 04:03
Show Gist options
  • Select an option

  • Save edy4c7/c950301d8f0c4d02b3d1 to your computer and use it in GitHub Desktop.

Select an option

Save edy4c7/c950301d8f0c4d02b3d1 to your computer and use it in GitHub Desktop.
pythonでズンドコキヨシするやつ(https://twitter.com/kumiromilk/status/707437861881180160)
import re
import random
def main():
result = ''
while re.search(r'(ズン){4}ドコ$',result) is None:
result += random.choice(['ズン','ドコ'])
result += 'キ・ヨ・シ!!'
print(result)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment