python3与python2的还是有诸多的不同,比如说在2中:
代码如下:
print “hello,world!”
raw_input()
在3里面就成了:
代码如下:
print (“hello,world!”)
input()
所以如果用的python2开发的项目要迁移到3中,就需要进行代码的转换。python3中自带了个转换工具,下面用个最简单的例子来说说2to3转换工具。
例子:(2to3test.py 里面只有print这行代码)
代码如下:
# python 2.7.6
# 2to3test.py
print “hello,world!”
用python27显然是可以编译的:
代码如下:
d:\python>python27 2to3test.py
hello,world!
用python33就编译不过了,因为3里print是函数,这样写就会有语法错误。
代码如下:
d:\python>python33 2to3test.py
file “2to3test.py”, line 1
print “hello,world!”
^
syntaxerror: invalid syntax
下面用python3中自带的2to3工具进行转换:
代码如下:
d:\python>python c:\python33\tools\scripts\2to3.py -w 2to3test.py
refactoringtool: skipping implicit fixer: buffer
refactoringtool: skipping implicit fixer: idioms
refactoringtool: skipping implicit fixer: set_literal
refactoringtool: skipping implicit fixer: ws_comma
refactoringtool: refactored 2to3test.py
— 2to3test.py (original)
+++ 2to3test.py (refactored)
@@ -1 +1 @@
-print “hello,world!”
+print(“hello,world!”)
refactoringtool: files that were modified:
refactoringtool: 2to3test.py
最后用python33来进行编译,结果显示正确的。
代码如下:
d:\python>python33 2to3test.py
hello,world!
总结:
1. 目录. c:\python33\tools\scripts\2to3.py. 其实在python2.6,2.7中都存在这个工具。
2. 如果不加-w参数,则默认只是把转换过程所对应的diff内容打印输出到当前窗口而已。
3. 加了-w,就是把改动内容,写回到原先的文件了。
4. 不想要生成bak文件,再加上-n即可。 bak最好还是有。