根据《Python基础教程(第2版~修订版)》一书自学时,发现Python3.X与Python2.X的不同之处(一)
Python3.X与Python2.X最基础的不同之处是:print后需要加()。
Python3.7
>>> print("Hello world!")
Hello world!
Python2.5
print "Hello world!"
Hello world!
1.8 中提到的round函数
在Python2.5中round函数会将结果四舍五入为最接近的整数。在Python3.7中仍保持这一特性,但是,在类似(1.0/2.0)or(4.0/8.0)这种情况下,round没有取值为1.0,而是向下取值、取为0。
Python3.7
>>>round(1.0/2.0)
0
Python2.5
>>>round(1.0/2.0)
1.0
1.10中提到是raw_input和input
在Python3.7版本中已经取消raw_input这一函数,而是将raw_input函数的功能与input函数进行了整合,只保留input函数。
Python3.7
input
name = input("What is your name?")
print('Hello,'+ name +'!')
What is your name? Xiaobai_Tan
Hello, Xiaobai_Tan!
3.7运行时,raw_input出错
name = raw_input("What is your name?")
print('Hello,'+ name +'!')
Traceback (most recent call last):
File "D:/Python/180801_1.py", line 1, in <module>
name = raw_input("What is your name?")
NameError: name 'raw_input' is not defined