python3 print報錯
在安裝了最新版本的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));
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2318/viewspace-2836636/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python3中 print不加括號報錯!Python
- 自帶的 print 函式居然會報錯?函式
- 如何用python3輸出print對齊?Python
- python3升級後的報錯Python
- Python3類方法報錯takes 0 positional arguments but 1 was givenPython
- python3中reload()函式報錯怎麼解決Python函式
- anacond 或python3 報check_hostname requires server_hostname錯誤PythonUIServer
- 告別Print,使用IceCream進行高效的Python除錯Python除錯
- JavaScript print()JavaScript
- Print流
- centos6,python3,通過pip安裝pycurl出現報錯提示CentOSPython
- python print 用法Python
- GitHub 熱門:別再用 print 輸出來除錯程式碼了Github除錯
- 字串函式 print ()字串函式
- print基礎用法
- Python3 錯誤和異常介紹Python
- python3中輸出錯誤怎麼辦?Python
- 655-Print Binary Tree
- pycharm print 加顏色PyCharm
- python3 tkinter報錯:_tkinter.TclError: cannot use geometry manager pack inside . which already has slaves managed by gridPythonErrorIDE
- JavaScript報錯型別(報錯速查)JavaScript型別
- print 與 println 的區別
- WPF open image and print as pdf file
- springcloud報錯報UnsatisfiedDependencyExceptionSpringGCCloudException
- redis報錯Redis
- hive 報錯Hive
- spark報錯Spark
- dhcp報錯
- 報錯+2
- 前端報錯前端
- playsound報錯
- 報錯集合
- mybatis報錯MyBatis
- modprobe報錯
- JavaScript報錯JavaScript
- 報錯集
- pnpm 報錯NPM
- Jenkins報錯Jenkins