Created
February 25, 2020 09:58
-
-
Save bohyunjung/e7769a009400afb4720e832436f4f416 to your computer and use it in GitHub Desktop.
based on the story that Sungwoo shared...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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