How to Convert List to String in One Line in Python #shorts #python #programming #coding

preview_player
Показать описание
This video shows how to convert a list into a string in one line using the join function in Python.

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

The keyboard, the .join typed beautifully, aw mane 😭

MemesterTheMaster
Автор

listt = ["name", 2, 3 + 5j, 4]


def
    string = ""
    for i in listt:
        string += str(i)
    return string



Abdelaziz_AM