python hello world 出错 >>>pirnt ✀hello world✀ File "<stdin>",line 1 print ✀hello world✀ ^

这个^符号是在world后面那个✀ 下面
2024-11-14 13:31:07
推荐回答(5个)
回答1:

如果你的python版本是3.0或以上,print被改成了一个函数要这样用print('hello,world')
你那种用法只在2.X的版本中管用。

回答2:

首先是你的print写错了,在这python版本不同语法发生了很大的变化,建议使用2.6

回答3:

你的pirnt拼错了,改成print就OK了
File "",line 1 print 'hello world' ^ 就是说你输入的命令的第一行有错,并把这一行内容提出来让你看看

回答4:

是print
不是pirnt

回答5:

我昨天也开始学习python
>>>print ‘hello world’
hello world