Skip to content

Instantly share code, notes, and snippets.

@andrealmar
Created March 8, 2016 03:27
Show Gist options
  • Save andrealmar/9b94acadef768ac54627 to your computer and use it in GitHub Desktop.
Save andrealmar/9b94acadef768ac54627 to your computer and use it in GitHub Desktop.
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