您好,登錄后才能下訂單哦!
這篇文章主要介紹Python 2.x和Python 3.x中才語法方面有哪些區別,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
在安裝了最新版本的Python 3.x版本之后,去參考別人的代碼(基于Python 2.x寫的教程),去利用print函數,打印輸出內容時,結果卻遇到print函數的語法錯誤:
SyntaxError: invalid syntax
這是因為Python 2.x升級到Python 3.x,print函數的語法變化了,所以用Python 2.x的print函數的代碼,放在Python 3.x中運行,結果就出現了print函數的“SyntaxError: invalid syntax”了。
Python 2.x和Python 3.x中print函數語法方面的區別
最簡潔的解釋為:
Python 2.x: print “所要打印的內容” , 不帶括號
Python 3.x: print函數(”所要打印的內容”),必須帶括號
舉例來說明,即為:
1.不帶百分號格式化的
python 2.x:
print "Pyhon 2 can use print string without ()";
python 3.x:
print("Python3, print must use () to output string");
2.帶百分號格式化的
python 2.x:
print "old %s version is %d, print no ()"%("Python", 2);
python 3.x:
print("new %s version is %d, print must have ()"%("Python", 3));
以上是Python 2.x和Python 3.x中才語法方面有哪些區別的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。