I'm retrieving data from firebase as a list of dictionary. When I printed the list, it's not in the same order.
For example:
print(list(mydictionary.keys())[0])
This 0 element is always different, print is giving different outputs. I want to print with the same order in the database or make it the same when I took the data first as a list. Is it possible?