I want to change my data from a dictionary without id’s to [(id,’string’),(id2,’string 2′),…]

>Solution :
Your "mydictionary" is a set inside of a list:
mydictionary = [{'errors', 'wonderful'}]
mydictionary = mydictionary[0] # now is just a set (out of the list)
# Then we "unpack" with a list comprehension
wanted_dictionary = [ (i,key) for i,key in enumerate(mydictionary)]