标签:使用 sp on 代码 linux bs python window windows
如果要把python2编译器下的代码转换升级到python3编译器,可以使用python自带的 2to3工具进行转化:
windows下转化:
doc 命令窗口:
>> python C:\Python34\Tools\Scripts\2to3.py -w test.py ( -w 参数 不要忘记写)
linux下转化:
terminal窗口:
# 2to3 -w test.py ( -w 参数 不要忘记写)
标签:使用 sp on 代码 linux bs python window windows
原文地址:http://www.cnblogs.com/sdu20112013/p/4034078.html