내장함수 - execfile(filename[, globals[, locals]])

2015. 7. 20. 09:52IT관련

반응형

https://docs.python.org/2/library/functions.html#execfile


execfile(filename[, globals[, locals]])

exec()와 유사하며 코드 대신 파이썬 코드로 작성된 파일을 수행할 때 사용된다.



$ python test.py 

42

$ python

Python 2.7.6 (default, Sep  9 2014, 15:04:36) 

[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin

Type "help", "copyright", "credits" or "license" for more information.

>>> execfile('test.py')

42

>>> g = {}

>>> l = {}

>>> execfile('test.py', g, l)

42



반응형