+ 1
Adding words in python
Using **kwargs and *args
7 Réponses
+ 10
This is one of the new exercises. To solve it, please read the instructions. If you still struggle, read also this exercise: https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2484/
+ 2
As in the practical of python
+ 1
my answer:
def concatenate(*args):
return '-'.join(args)
print(concatenate("I", "love", "Python", "!"))
0
Lothar explain more
0
What is the answer of adding word (project) in python 3?
0
It is donr
0
It's Easy
print("I-love-Python-!")