NOSSO MENU

segunda-feira, 11 de janeiro de 2021

Converter um dict python em string

 

Converter um dict python em string 


dict1 = {'joao':1, 'pedro': 2, 'renato': 3}
print(dict1)

# convertendo dicionarios em str no python
teste = str(dict1)
print(teste)

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