编写一个名为 Introduction(name, school) 的函数,它接受一个名称(作为一个字符串)和一个学校作为输入,并返回以下文本:“你好。我的名字是名字。我一直想去上学。”</p>
这是我的代码
def introduction("name","school"):
return ("Hello. My name is ") + str(name) + (". I have always wanted to go to The") + str(school) + (".")
我收到此错误:
Traceback (most recent call last):
File "None", line 5, in <module>
invalid syntax: None, line 5, pos 23