NOSSO MENU

Mostrando postagens com marcador Essa é uma forma de converter listas em strings (STR) em python. Mostrar todas as postagens
Mostrando postagens com marcador Essa é uma forma de converter listas em strings (STR) em python. Mostrar todas as postagens

segunda-feira, 11 de janeiro de 2021

Essa é uma forma de converter listas em strings (STR) em python

 Essa é uma forma de converter listas em strings (STR) em python

teste = ["a", "b", "c"]

result = "".join(teste)
print(result)
ou 
teste = ["a", "b", "c"]
result = str(teste)
print(result)

Redes Sociais

anuncios