Python 2to3 使用方法

总结方法:

1.找到“2to3.py”文件,这个文件在安装目录的python3.7.2_32\Tools\scripts里面,我的是D:\Programs\python3.7.2_32\Tools\scripts;

2.找到要转换的.py文件或是py文件夹;eg:我的是一个demo3_nodeFieldOutput文件夹,地址是E:\QJL\Python\abaqus_python_batch-master\abaqus_python_batch-master\sample_driver_scripts\demo3_nodeFieldOutput\

2.win+r , 调出cmd,输入:

C:\Users\qxb>python D:\Programs\python3.7.2_32\Tools\scripts\2to3.py -w E:\QJL\Python\abaqus_python_batch-master\abaqus_python_batch-master\sample_driver_scripts\demo3_nodeFieldOutput\

红色:win+r的默认项,不用管

绿色:存放2to3.py的文件, -w貌似是写的意思

蓝色:目标文件或是文件夹,注意由于是-w操作,原来的“demo3_nodeFieldOutput”里面的所有“xxxx.py”文件都会被更新,同时生成“xxxx.py.bak”文件,前者是更新为python 3的版本,后者为python 2的版本。

如果说不想对整个文件夹替换,可以将“\demo3_nodeFieldOutput\ 改为 “\demo3_nodeFieldOutput\xxx1.py”,这样只有“xxx1.py”被替换了

参考

https://www.cnblogs.com/wushuaishuai/p/7611915.html

https://www.cnblogs.com/wuliytTaotao/p/9459840.html

https://105739.guanwang.cc/article/133430

相关推荐