Konversi dikte menjadi python string
my_dict = {"Hello" : True, "World" : False}
print(str(my_dict))
TheProgrammer
my_dict = {"Hello" : True, "World" : False}
print(str(my_dict))
dict = str(dict)
dict = {"Potato" : False, "Carrot" : True}
string = str(dict)