Python 常用语句

每个文件头切记加上:  #coding:utf-8

访问当前脚本上层目录:

import sys,os

os.path.join( os.path.dirname(__file__),’..’)

例如访问上层目录的Test文件夹: os.path.join( os.path.dirname(__file__),’..’)  + “/Test/”

调用不同目录的脚本:

不同目录下建立脚本:__init__.py       此脚本最好加上文章第一句

本脚本:

import sys

# 工具脚本所在目录 上一层的script目录下 名为 test.py ,有个testPrint 方法
sys.path.append(“../script”)

import test

test.Print()