使用 Python 3 打印时出现语法错误[重复]
- 2024-11-28 08:37:00
- admin 原创
- 14
问题描述:
为什么在 Python 3 中打印字符串时会收到语法错误?
>>> print "hello World"
File "<stdin>", line 1
print "hello World"
^
SyntaxError: invalid syntax
解决方案 1:
在 Python 3 中,print
它变成了一个函数。这意味着你现在需要包含括号,如下所示:
print("Hello World")
解决方案 2:
看起来您正在使用 Python 3.0,其中print 已变成可调用函数而不是语句。
print('Hello world!')
解决方案 3:
因为在 Python 3 中,print statement
已经用 替换了print() function
带有关键字参数的 ,以替换旧 print 语句的大部分特殊语法。所以你必须把它写成
print("Hello World")
但是如果你在程序中写了这个,并且有人使用 Python 2.x 尝试运行它,他们会得到一个错误。为了避免这种情况,最好导入 print 函数:
from __future__ import print_function
现在您的代码可以在 2.x 和 3.x 上运行。
查看下面的示例以熟悉 print() 函数。
Old: print "The answer is", 2*2
New: print("The answer is", 2*2)
Old: print x, # Trailing comma suppresses newline
New: print(x, end=" ") # Appends a space instead of a newline
Old: print # Prints a newline
New: print() # You must call the function!
Old: print >>sys.stderr, "fatal error"
New: print("fatal error", file=sys.stderr)
Old: print (x, y) # prints repr((x, y))
New: print((x, y)) # Not the same as print(x, y)!
来源:Python 3.0 有什么新功能?
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD