python中的os.path.realpath(__file__),取的是脚本的完整路径
[root@leexl ~]# cat tst.py
import osRoot = (os.path.realpath(__file__))print Root
[root@leexl ~]# python tst.py/root/tst.py