python2 7和python3 7的區別!

2022-06-28 16:36:13 字數 2547 閱讀 6387

區別一:print語法使用

python2.7   print語法使用   >>> print "hello python"       

python3.7   print語法使用   >>> print("hello python")

例子:在python 3.7.0使用雙引號觸發syntaxerror異常機制  提示did you mean print("hello python3.7")  

print 換行和不換行區別

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

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

區別二: raw_input()和input()

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

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

區別三: 函式cmp()

python 2.7   cmp(x,y)函式用於比較2個物件,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1

python3.7    cmp()已經不存在了,如果你需要實現比較功能,需要引入 operator 模組,適合任何物件

>>>importoperator>>>operator.eq('hello','name');false>>>operator.eq('hello','hello');true

區別四:string 字母 大小寫字串

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

python 3.0中,string.ascii_letters.

區別一:print語法使用

python2.7   print語法使用   >>> print "hello python"       

python3.7   print語法使用   >>> print("hello python")

例子:在python 3.7.0使用雙引號觸發syntaxerror異常機制  提示did you mean print("hello python3.7")  

print 換行和不換行區別

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

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

區別二: raw_input()和input()

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

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

區別三: 函式cmp()

python 2.7   cmp(x,y)函式用於比較2個物件,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1

python3.7    cmp()已經不存在了,如果你需要實現比較功能,需要引入 operator 模組,適合任何物件

>>>importoperator>>>operator.eq('hello','name');false>>>operator.eq('hello','hello');true

區別四:string 字母 大小寫字串

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

python 3.0中,string.ascii_letters.

python2 7換行 Python2 7基礎語法

1.建立檔案xx.py usr bin python3 print hello,world 2.linux下執行 python hello.py 3.編碼 預設字串unicode 設定編碼 coding utf 8 4.識別符號 第乙個字元必須是字母表中字母或下劃線 識別符號的其他的部分有字母 數字...

python2 7是什麼 python2 7是什麼

pyton2.7是python在2010年發布的乙個版本。python 是乙個高層次的結合了解釋性 編譯性 互動性和物件導向的指令碼語言,具有很強的可讀性,相比其他語言經常使用英文關鍵字,其他語言的一些標點符號,它具有比其他語言更有特色語法結構。下面來解釋一下python這門語言 python是一種...

python2 7中文編碼 python2 7

我從外部api中獲得了乙個字串 u4ece u8d77 u70b9 u5411 u6b63 u5357 u65b9 u5411 u51fa u53d1,u884c u9a76170 u7c73,u76f4 u884c u8fdb u5165 u4e2d u5173 u6751 u4e1c u8def...