这个获取文件路径中所在的目录。
In [
1
]:
import
os
2
]: os.__file__
Out[
'/usr/lib/python2.7/os.pyc'
3
]: os.path.dirname(os.__file__)
'/usr/lib/python2.7'