Python 2to3 使用方法
Posted uncle7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 2to3 使用方法相关的知识,希望对你有一定的参考价值。
总结方法:
1.找到“2to3.py”文件,这个文件在安装目录的python3.7.2_32Toolsscripts里面,我的是D:Programspython3.7.2_32Toolsscripts;
2.找到要转换的.py文件或是py文件夹;eg:我的是一个demo3_nodeFieldOutput文件夹,地址是E:QJLPythonabaqus_python_batch-masterabaqus_python_batch-mastersample_driver_scriptsdemo3_nodeFieldOutput
2.win+r , 调出cmd,输入:
C:Usersqxb>python D:Programspython3.7.2_32Toolsscripts2to3.py -w E:QJLPythonabaqus_python_batch-masterabaqus_python_batch-mastersample_driver_scriptsdemo3_nodeFieldOutput
红色:win+r的默认项,不用管
绿色:存放2to3.py的文件, -w貌似是写的意思
蓝色:目标文件或是文件夹,注意由于是-w操作,原来的“demo3_nodeFieldOutput”里面的所有“xxxx.py”文件都会被更新,同时生成“xxxx.py.bak”文件,前者是更新为python 3的版本,后者为python 2的版本。
如果说不想对整个文件夹替换,可以将“demo3_nodeFieldOutput ”改为 “demo3_nodeFieldOutputxxx1.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
以上是关于Python 2to3 使用方法的主要内容,如果未能解决你的问题,请参考以下文章
Helm 2to3 迁移,迁移成功后要运行 helm delete 吗?