python>>> print ✀hello world✀ SyntaxError: invalid syntax

2024年11月14日 13:31
有5个网友回答
网友(1):

这应该是版本的问题,2的话直接就可以输出,但是到了3需要放到括号里,你可以查配套的文档

网友(2):

我拷贝你的问题测试了下没有错误啊, 是不是你在输入代码时, 单引号误输入为全角的了?
我电脑上的显示
-----------------
ActivePython 2.5.5.7 (ActiveState Software Inc.) based on
Python 2.5.5 (r255:77872, Jan 31 2010, 15:49:35) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print 'hello world'
hello world
>>>
----------------

网友(3):

输入Python>> help(print)
查看Python在你机器上print的用法 ,下面是我电脑里输出的print帮助
===================================================================
Help on built-in function print in module builtins:

print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout)

Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
================================================================

网友(4):

python 2 里 print 后面可以直接跟打印的内容,python 3里 print 是一个函数,打印的内容以函数输入参数的形式传递,print ('打印的内容')

网友(5):

>>> print ('hello world')
hello world
加上括号就能解决,我的是python 3.7版本