python>>> print 'hello world' SyntaxError: invalid syntax
但是如果直接输入"hello"则不会显示错误。我刚开始学习这门语言。谢谢了呀!所剩分不多了,见谅!...
但是如果直接输入"hello"则不会显示错误。我刚开始学习这门语言。谢谢了呀!所剩分不多了,见谅!
展开
展开全部
我拷贝你的问题测试了下没有错误啊, 是不是你在输入代码时, 单引号误输入为全角的了?
我电脑上的显示
-----------------
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
>>>
----------------
我电脑上的显示
-----------------
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
>>>
----------------
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
输入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.
================================================================
查看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.
================================================================
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
python 2 里 print 后面可以直接跟打印的内容,python 3里 print 是一个函数,打印的内容以函数输入参数的形式传递,print ('打印的内容')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
>>> print ('hello world')
hello world
加上括号就能解决,我的是python 3.7版本
hello world
加上括号就能解决,我的是python 3.7版本
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询