这是python 3
我只是用数字来做这个程序,但是不能用名字来做。
这就是我写的

x=input("write a actor from a famous movie:")
if (x==Matt Damon):
    print ("Jason Bourne")
else:
    print ("type another actor")


据我了解,这是错误的==部分,但我不知道为什么。我的另一种想法是写类似:
MattDamon=Jason Bourne

但这也不起作用,我觉得我缺少一些次要的东西。

如果有人可以帮助我,我将非常高兴,谢谢!

最佳答案

if条件-(x=="Matt Damon")中缺少名称的引号

x=input("write a actor from a famous movie:")
if (x=="Matt Damon"):
    print ("Jason Bourne")
else:
    print ("type another actor")

10-08 02:41