Skip to content

Instantly share code, notes, and snippets.

@Billmike
Last active April 26, 2020 11:50
Show Gist options
  • Save Billmike/13c544365d34a85dae649cef53faba56 to your computer and use it in GitHub Desktop.
Save Billmike/13c544365d34a85dae649cef53faba56 to your computer and use it in GitHub Desktop.
def func1():
print("I am a function")
func1() # I am a function
print(func1()) # I am a function None
print(func1) # <function func1 at 0x102a3a210>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment