与"的Python语法错误

时间:2018-05-05 13:00:18

标签: python

你好我是一个菜鸟,刚开始使用python所以我想用raw_input玩得开心,添加随机问题和东西,但我遇到了一个错误。它说无效的语法是"。我一直试图把它放到不同的地方,但没有成功我很抱歉,如果这是一个非常愚蠢的问题,但有人可以帮助我。

带有错误的行

print " Oh okay then %s . You came from %s , right? Oh i see you came here to %s" % (name,so,fun)

指向结束"在%s

旁边

我正在使用atom

编辑:继承错误

 File "C:\Users\USER\AppData\Local\atom\app-1.26.1\Testing.py", line 10
print " Oh okay then %s . You came from %s , right? Oh i see you came here %s. " % (name, so, fun)
                                                                               ^
  

SyntaxError:语法无效

下面是完整的代码:

name = raw_input("Hello whats your name?")
so = raw_input("From where did you come from")
fun = raw_input("Interesting, why did you come here?")
#start the sentence with "for"


print " Oh okay then %s . You came from %s , right? Oh i see you came here %s. " % (name, so, fun)

如果我无法使用raw_input那么我可以使用什么?我学会了使用它。

1 个答案:

答案 0 :(得分:2)

我通过在像

这样的整个事物上放置括号来解决问题
print (" Oh okay then %s . You came from %s , right? Oh i see you came here to %s" % (name,so,fun))

此外,我认为raw_input已替换为' input()'。