Skip to content

Instantly share code, notes, and snippets.

@bohyunjung
Created February 25, 2020 09:58
Show Gist options
  • Save bohyunjung/e7769a009400afb4720e832436f4f416 to your computer and use it in GitHub Desktop.
Save bohyunjung/e7769a009400afb4720e832436f4f416 to your computer and use it in GitHub Desktop.
based on the story that Sungwoo shared...
def life():
while True:
for action in ["sex", "bob"]:
yield action
if __name__ == "__main__":
for action in life():
print(action)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment