join()
Si
split()
divise la chaîne en éléments, join()
réunit les éléments d'une liste pour former une chaîne :l = ['Hi', 'I', 'am', 'Python', '3', '10']
print('.'.join(l)) # Hi.I.am.Python.3.10
print(' '.join(l)) # Hi I am Python 3 10
print('*-*'.join(l)) # Hi*-*I*-*am*-*Python*-*3*-*10
print('\n'.join(l)) # Hi
# I
# am
# Python
# 3
# 10
Défi
Étant donné 5 noms en entrée, affichez-les séparés par un
-->
.L'entrée contient 5 noms, chacun sur une ligne séparée.
La sortie doit contenir une seule ligne - les 5 noms séparés par
-->
.Entrée | Sortie |
Anna
Simon
Lily
Bob
David | Anna-->Simon-->Lily-->Bob-->David |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB