Python 3.7: Join String Method

preview_player
Показать описание
In this Python 3.7 tutorial, we will take a look at the join string method. This method will take the string it is called on and use it as a seperator and the argument passed to the join string method will be the iterator.

Рекомендации по теме
Комментарии
Автор

Informative and fairly clear video! Thank you very much!

crontsquared
Автор

Thank you very much for this video! It was very helpful :)

tymothylim
Автор

n = str(input('Digite seu nome completo: ')).title().split()
nome = '<>'.join(n)
print('Muito prazer em te conhecer, {}!\n'
'Seu primeiro nome é ( {} )\n'
'E seu ultimo nome é ( {} )\n'
'{}'
.format(n [0], n [0], n [len(n) - 1], nome))

'''n = str(input('Digite')).split()
nome = '@'.join(n)
print(nome)'''

mayksantos
Автор

a="super"
a.join(("teaching", "explain"))

ravikumarpijanan