Skip to content

Instantly share code, notes, and snippets.

@harrifeng
Created May 7, 2018 08:12
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 harrifeng/28515f61d8688256db13221879cf8dd7 to your computer and use it in GitHub Desktop.
Save harrifeng/28515f61d8688256db13221879cf8dd7 to your computer and use it in GitHub Desktop.
def display(one):
print(type(one))
display(1)
display(i for i in range(32))
# <===================OUTPUT===================>
# <class 'int'>
# <class 'generator'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment