标签:decode dell 成功 style end 合并 path 指定 app
a="C:\Users\Dell\Desktop\ATOU\公共测试用例" (带中文的路径)
a=a.decode("utf-8").encode("gbk") (进行转码)
import sys
sys.path.append(a) (指定路径成功)
合并起来一条:
import sys
sys.path.append("C:\Users\Dell\Desktop\ATOU\公共测试用例".decode("utf-8").encode("gbk"))
标签:decode dell 成功 style end 合并 path 指定 app
原文地址:http://www.cnblogs.com/kaibindirver/p/7458222.html