Skip to content

Instantly share code, notes, and snippets.

@b1naryth1ef
Created August 24, 2011 02:52
Show Gist options
  • Save b1naryth1ef/1167199 to your computer and use it in GitHub Desktop.
Save b1naryth1ef/1167199 to your computer and use it in GitHub Desktop.
Dynamic linking functions!
#FILE 1
def funcy(a,b,c):
print (a,b,c)
#FILE 2
import file1
def funcx(*vars):
file1.funcy([i for i in vars])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment