我对编码很陌生,所以我希望我的问题有道理/格式正确。
这是我的代码:
#this function takes a name and a town, and returns it as the following:
#"Hello. My name is [name]. I love the weather in [town name]."
def introduction("name","town"):
phrase1='Hello. My name is '
phrase2='I love the weather in '
return ("phrase1" + "name" + "phrase2" + "town")
E.g。 python shell中的introduction("George","Washington")
将返回"Hello. My name is George. I love the weather in Washington."
我的问题是我的代码没有这样做。相反,我收到以下错误:
Invalid syntax: <string> on line 1". In Wing101 **,"town"):
下面有一个红色的摇摆。我不确定我做错了什么......我知道“名字”和“城镇”是字符串而不是变量,但我真的不知道如何解决它。
感谢任何帮助/评论。
答案 0 :(得分:6)
您不能将字符串文字用作函数参数,不能。您只能使用变量名称。删除所有双引号:
def introduction(name, town):
phrase1='Hello. My name is '
phrase2='. I love the weather in '
return (phrase1 + name + phrase2 + town)
调用函数时传入字符串:
introduction("George", "Washington")
然后分别将这些内容分配给name
和town
。