Created
August 24, 2011 02:52
-
-
Save b1naryth1ef/1167199 to your computer and use it in GitHub Desktop.
Dynamic linking functions!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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