“converter dict em string python” Respostas de código

converter dict em string python

my_dict = {"Hello" : True, "World" : False}
print(str(my_dict))
TheProgrammer

Poython Str para ditar

>>> D1={'1':1, '2':2, '3':3}
>>> s=str(D1)
>>> import ast
>>> D2=ast.literal_eval(s)
>>> D2
{'1': 1, '2': 2, '3': 3}

Gleaming Giraffe

dite para string

dict = str(dict)
Clumsy Crocodile

Respostas semelhantes a “converter dict em string python”

Perguntas semelhantes a “converter dict em string python”

Mais respostas relacionadas para “converter dict em string python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código