Skip to content

Instantly share code, notes, and snippets.

@ericzhong
Created May 23, 2017 09:32
Show Gist options
  • Save ericzhong/c8a376674cb0aedc80ce05f9fa05f88e to your computer and use it in GitHub Desktop.
Save ericzhong/c8a376674cb0aedc80ce05f9fa05f88e to your computer and use it in GitHub Desktop.
生成器
def gen(stop):
for i in range(stop):
yield i
f = gen(10)
print(type(f))
for i in f:
print(i),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment