我如何在python中执行此操作?
您要编写的第一个函数应该称为'wordSalad'。你的功能需要四(4) 参数,所有字符串。该函数应该返回一个(1)字符串格式如下:'我爱 以及和。'
示例测试用例: wordSalad('Bob','Joe','lemonade','pizza')
返回 我喜欢Bob和Joe的柠檬水和披萨。
答案 0 :(得分:2)
Ballyvic Boru5/6
First Drift2/1
Sizing Cusimanoin15/2
试试这个。你只需要连接字符串。您也可以使用字符串格式。
def wordSalad(a,b,c,d):
return "I love "+a+" and "+b+" with "+c+" and "+d+'.'
答案 1 :(得分:2)
添加到@ WHACKAMADOODLE3000的答案,你也可以使用%s。 (打字少一点)
def wordSalad(a, b, c, d):
return 'I love %s and %s with %s and %s.' % (a, b, c, d)