您的位置:首页 > 编程语言 > Python开发

关于Python 3.x中,使用print函数时出现的语法错误(SyntaxError: invalid syntax)的问题的原因

2015-03-19 09:58 931 查看
【现象】

很多Python初学者,在安装了最新版本的Python 3.x版本,比如Python 3.2之后,

去参考别人的代码(基于Python 2.x写的教程),去利用print函数,打印输出内容时,结果却遇到print函数的语法错误:

SyntaxError: invalid syntax

【原因】

这是因为,你正在用的Python版本是Python 3.x,而参考别人的代码是Python 2.x的代码,而由于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. 带百分号格式
4000
化的

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 格式化
相关文章推荐