Created
March 8, 2016 03:27
-
-
Save andrealmar/9b94acadef768ac54627 to your computer and use it in GitHub Desktop.
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 generator(): | |
n = 1 | |
print("Essa uma função Generator") | |
yield n | |
n += 1 | |
yield n | |
n += 1 | |
yield n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment