I have a dictionary which has frequency (int) as keys and numbers (list) as values. If I iterate through the list as given below will it give the frequencies in ascending order.
for freq in dic:
print(freq)
Will the frequency be in ascending order?