내장함수 - execfile(filename[, globals[, locals]])
2015. 7. 20. 09:52ㆍIT관련
반응형
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
반응형
'IT관련' 카테고리의 다른 글
내장함수 - filter(function, iterable) (0) | 2015.07.20 |
---|---|
내장함수 - file(name[, mode[, buffering]]) (0) | 2015.07.20 |
내장함수 - eval(expression[, globals[, locals]]) (0) | 2015.07.20 |
내장함수 - enumerate(sequence, start=0) (0) | 2015.07.20 |
내장함수 - divmod(a, b) (0) | 2015.07.20 |