美文网首页
python 2和 python 3 的差异之处

python 2和 python 3 的差异之处

作者: 秋雁上海 | 来源:发表于2020-08-12 14:50 被阅读0次

/ 操作符

python 2

>>> 13 / 8
1
>>> 13 / 8.0  # 操作数必须有浮点数
1.625
>>>

python 3(除法有小数点)

>>> 13 // 8  # 整除
1
>>> 13 / 8
1.625
>>>

print

python 2

>>> print 'Hello'
Hello
>>>

python 3 (函数调用必须加小括号)


>>> print('Hello')
Hello
>>>

待补充

相关文章

网友评论

      本文标题:python 2和 python 3 的差异之处

      本文链接:https://www.haomeiwen.com/subject/xlsudktx.html