TypeError:'str'对象不可调用问题

-2 python

我一直在浏览互联网以及之前的其他许多人,找不到我继续得到TypeError的答案:每次我尝试运行我的程序时,'str'对象都不是可调用的 bug,这是为了问一个问题为了让用户回答然后加分,我需要解决这个问题,如果我想继续

input = ("What is your name?")
print = ("I will ask you 10 questions and give you three choices for each question \n IMPORTANT! PLEASE KEEP YOUR CAPSLOCK ON")

score = 0
score = int(score)

q1 = input("What piece of code would show a word/sentence and nothing else \n A. print () \n B. input () \n C. int(print) ")

if q1 == ("A") :
    print ("Well done! That is correct")
    score = score + 1
    print ("Your score is",score,)
elif q1 == ("B") :
    print ("That is incorrect")
elif q1 == ("C") :
    print ("That is incorrect")
Run Code Online (Sandbox Code Playgroud)

请帮帮我,谢谢!

Uri*_*iel 5

input = ("What is your name?")
print = ("I will ask you 10 questions and give you three choices for each question \n IMPORTANT! PLEASE KEEP YOUR CAPSLOCK ON")
Run Code Online (Sandbox Code Playgroud)

用字符串覆盖inputprint函数.使用

name = input("What is your name?") # the input will be stored in name
print("""I will ask you 10 questions and give you three choices for each question.
IMPORTANT! PLEASE KEEP YOUR CAPSLOCK ON.""")
Run Code Online (Sandbox Code Playgroud)