Python 3.x中使用print函數出現語法錯誤(SyntaxError: invalid syntax)的原因

來源:互聯網
上載者:User

標籤:python

在安裝了最新版本的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 3.x中使用print函數出現語法錯誤(SyntaxError: invalid syntax)的原因

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.