您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)python2.7和3.7的區(qū)別是什么,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
區(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")
print 換行和不換行區(qū)別
python 2.7 print 不換行使用","即可
python 3.7 print 不換行使用end=""
區(qū)別二: raw_input()和input()
Python 2.7 raw_input() input() 都存在 可使用 raw_input()接收字符串string input()接收數(shù)字int /flot.
Python 3.7 raw_input()不存在 僅存在input() 兩者合并 接收任意格式 返回string
區(qū)別三: 函數(shù)cmp()
python 2.7 cmp(x,y)函數(shù)用于比較2個(gè)對象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1
python3.7 cmp()已經(jīng)不存在了,如果你需要實(shí)現(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.
關(guān)于python2.7和3.7的區(qū)別是什么就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。