问题
I have some code in python 2.7 and I want to convert it all into python 3.3 code. I know 2to3 can be used but I am not sure exactly how to use it. Thanks for any help
回答1:
As it is written on 2to3 docs, to translate an entire project from one directory tree to another, use:
$ 2to3 --output-dir=python3-version/mycode -W -n python2-version/mycode
回答2:
If you don't have 2to3
on your path, you can directly invoke lib2to3
:
python -m lib2to3 directory\file.py
And as the docs (and other answers) mention, you can use some flags for more customization:
- the
-w
flag to enable writeback, which applies the changes to the file - the
-n
to disable backups
(there are a few more flags; see the docs for more information.)
回答3:
On Windows:
python {path_to_python}\tools\scripts\2to3.py --output-dir={output_dir} -W -n {input_dir}
path_to_python
= directory where Python is installed
output_dir
= directory where to output the Python3 scripts
input_dir
= directory from where to read the Python2 scripts
回答4:
It's very important to have a backup before running
2to3
.
- If you're using git, make a commit.
- Otherwise, make a backup copy of your files.
First, run 2to3 in "soft mode" to see what it would actually do:
$ 2to3 /path/to/your/project
If you're happy with what it would do, you can then run 2to3 "for real":
$ 2to3 --write --nobackups /path/to/your/project
And now you have properly run 2to3
:)
回答5:
To convert all python 2 files in a directory to 3, you simply could run $ C:\Program Files\Python\Tools\Scripts\2to3.py -w -n.
inside the directory that you want to translate. It would skip all the non .py
files anyway, and convert the rest.
note: remove the -n flag, if you want the backup file too.
回答6:
The python 2to3.py file is mostly found in the directory C:/Program Files/Python/Tools/scripts if you already have python installed. I have python 3.6 and 2to3 is in the directory C:/Program Files/Python36/Tools/scripts. To convert a certain python 2 code to python 3, go to your command promt, change the directory to C:/Program Files/Python36/Tools/scripts where the 2to3 file is found. Then add the following command: python 2to3.py -w (directory to your script).
eg. C:\Program Files\Python36\Tools\scripts> python 2to3.py -w C:Users\Iykes\desktop\test.py.
the '-w' here ensures a backup file for your file is created.
来源:https://stackoverflow.com/questions/20458011/how-to-use-2to3-properly-for-python