區(qū)別一:print語(yǔ)法使用
Python2.7 print語(yǔ)法使用 >>> print "Hello Python"
Python3.7 print語(yǔ)法使用 >>> print("Hello Python")
例子:在Python 3.7.0使用雙引號(hào)觸發(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è)對(duì)象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1
python3.7 cmp()已經(jīng)不存在了,如果你需要實(shí)現(xiàn)比較功能,需要引入 operator 模塊,適合任何對(duì)象
>>> import operator
>>> operator.eq('hello', 'name');
False
>>> operator.eq('hello', 'hello');
True
區(qū)別四:string 字母 大小寫(xiě)字符串
string.letters:包含所有字母(大寫(xiě)或小寫(xiě))的字符串
Python 3.0中,string.ascii_letters.
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com