Skip to content

Instantly share code, notes, and snippets.

@iwasa-kosui
Created February 16, 2019 13:24
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 iwasa-kosui/7c520d8f6430fe28e88d76c22965e5bf to your computer and use it in GitHub Desktop.
Save iwasa-kosui/7c520d8f6430fe28e88d76c22965e5bf to your computer and use it in GitHub Desktop.
優しい言葉ジェネレータ
def 優しい言葉ジェネレータ():
while True:
for c in "優しい言葉":
yield c
def main():
for word in 優しい言葉ジェネレータ():
print(word)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment