my_dict = {"Hello" : True, "World" : False}
print(str(my_dict))
dict = str(dict)
dict = {"Potato" : False, "Carrot" : True}
string = str(dict)
# a dictionary
dictionary = {1: "A", 2: "B", 3: "C"}
print("Dictionary: ", dictionary, " type: ", type(dictionary))
# calling upon str() to convert dict to string
string = str(dictionary)
print("Dict into stringa: " + string + " type ", type(string))