Skip to content

Instantly share code, notes, and snippets.

@Nevin243
Created March 24, 2020 10:12
Show Gist options
  • Save Nevin243/2a74c32ee091da5c363304de412d70a7 to your computer and use it in GitHub Desktop.
Save Nevin243/2a74c32ee091da5c363304de412d70a7 to your computer and use it in GitHub Desktop.
Python Imports
def foo():
return("Hello ")
def bar():
return("World")
# Normal imports
from foo_bar import foo, bar
# Use normally
print(foo() + " " + bar())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment