溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python2.7與python3.7的區(qū)別都有哪些

發(fā)布時間:2020-07-18 10:23:52 來源:億速云 閱讀:541 作者:清晨 欄目:編程語言

這篇文章主要介紹python2.7與python3.7的區(qū)別都有哪些,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

python2.7與python3.7的區(qū)別:1、print語法的使用規(guī)則不同;2、“raw_input()”和“input()”方法的使用方式不同;3、cmp()函數(shù)的用途不同;4、string的使用方式不同。

python2.7與python3.7的區(qū)別都有哪些

區(qū)別一:print語法使用

Python2.7   print語法使用   >>> print "Hello Python"       

Python3.7   print語法使用   >>> print("Hello Python")

例子:在Python 3.7.0使用雙引號觸發(fā)SyntaxError異常機(jī)制  提示Did you mean print("Hello Python3.7")  

 python2.7與python3.7的區(qū)別都有哪些

 print 換行和不換行區(qū)別

 python  2.7  print 不換行使用","即可

 python2.7與python3.7的區(qū)別都有哪些

 python 3.7 print 不換行使用end=""

 python2.7與python3.7的區(qū)別都有哪些

 區(qū)別二: raw_input()和input()

 Python 2.7  raw_input()  input() 都存在 可使用    raw_input()接收字符串string  input()接收數(shù)字int /flot.

 Python 3.7  raw_input()不存在  僅存在input()   兩者合并  接收任意格式 返回string

 python2.7與python3.7的區(qū)別都有哪些

python2.7與python3.7的區(qū)別都有哪些

區(qū)別三: 函數(shù)cmp()

python 2.7   cmp(x,y)函數(shù)用于比較2個對象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1

python3.7    cmp()已經(jīng)不存在了,如果你需要實現(xiàn)比較功能,需要引入 operator 模塊,適合任何對象

>>> import operator
>>> operator.eq('hello', 'name');
False
>>> operator.eq('hello', 'hello');
True

區(qū)別四:string 字母 大小寫字符串

string.letters:包含所有字母(大寫或小寫)的字符串

Python 3.0中,string.ascii_letters.

以上是python2.7與python3.7的區(qū)別都有哪些的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI