join( ) function in Python String - Python Short Series Ep. 107 #python #coding #programming

preview_player
Показать описание
Hello Dear Coders,

In this Episode 107 of the Python Short Series, we will learn about the String Handling, different pre-defined function that we can perform on the string data.

This video is a quick guide to different functions that are available with the string data in the python.

Stay tuned....

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

Join only takes str types, so:

‘, ‘.join(map(str, iteratables))

May be useful

DrDeuteron