+ 1
I'm not able to solve "adding words" program in python.please provide me a solution
3 odpowiedzi
+ 6
def concatenate(*args):
return("-".join(args))
print(concatenate("I", "love", "Python", "!"))
Thanks. I did it..
+ 3
Show ur attempt may be we can help u :)
0
Use "return" in concatenate function, not print