Python2 与 Python3 区别
Posted 孔雀东南飞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python2 与 Python3 区别相关的知识,希望对你有一定的参考价值。
Python2 中 print 用法为 print "Hello World"
Python3 中 print 用法为 print("Hello World")
Python2 中的 input() 函数:获取当前输入的内容,并将其作为数字类型来处理
Python3 中的 input() 函数:获取当前输入的内容,并将其作为字符串类型来处理
Python2 中的 raw_input() 函数用于获取当前输入的内容,并将其作为字符串类型来处理
Python3 中不再有 raw_input() 函数,使用 input() 函数来替代
以上是关于Python2 与 Python3 区别的主要内容,如果未能解决你的问题,请参考以下文章