python2和python3的区别

Posted 哟,写bug呢??

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2和python3的区别相关的知识,希望对你有一定的参考价值。

1、print

python2中print函数不需要带括号

print test

 

 pytho3中print函数必须带括号

print("test")

 2、编码格式

python2中的默认编码是:ASCII

python3中的默认编码是:utf-8

3、除法运算

Python2

print 1/2   #0
print 1.0/2.0   #0.5

 

python3

print(1/2)#0.5

 

4、不等于

python 2中不等于有两种表达方式:<>和!=

python3中只保留了一种:!=

 

以上是关于python2和python3的区别的主要内容,如果未能解决你的问题,请参考以下文章

python2 和Python3 的区别

python2和python3的输入和输出区别

Python2和Python3的区别

python2和python3的区别

Python2.x和Python3.x的区别

Python3和Python2的区别 持续更新