Skip to content

Instantly share code, notes, and snippets.

@zhao-ji
Created April 11, 2015 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhao-ji/4c9c18428f30099b651f to your computer and use it in GitHub Desktop.
Save zhao-ji/4c9c18428f30099b651f to your computer and use it in GitHub Desktop.
Python output the Nature Number
class Num:
'''output the nature number'''
num = 0
def next_num(self):
yield self.num
self.num += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment