0
You need to write a function that takes multiple words as its argument and returns a concatenated version of those words separat
Help me
2 Answers
+ 1
M.A.O Ù How about this one? :-
def foo(*args):
return "".join(args)
# Hope this helps
Help me