本文介绍一下在windows 10 环境下如何使用这个工具:

1)首先要先安装好python3,可到官网下载https://www.python.org/

2)使用Windows 命令提示符(cmd)打开2to3.py 脚本所在位置,如下图:

  1. C:\Users\CodeMing>cd C:\Program Files\Python 3.5\Tools\scripts

Python利用脚本2.x到3自动转换-LMLPHP

3)紧接着运行 2to3.py 脚本

    1. C:\Program Files\Python 3.5\Tools\scripts>python 2to3.py

4)2to3.py 脚本可以单独转换python2.x 代码 到python3,也可以按照目录批量的转换。下面分别举例说明一下:

A  按目录转换

假设我要转换的代码所在目录在:E:\ipv6-master

那么在CMD里面输入:

  1. C:\Program Files\Python 3.5\Tools\scripts>python 2to3.py -w E:\ipv6--master\

B 按指定代码转换

    1. C:\Program Files\Python 3.5\Tools\scripts>python 2to3.py -w E:\ipv6--master\IPV6.py
05-07 15:27