What you want is the dict.items() method, which provides (key, value) tuples.
To sort by the value, you then use a key method, in this case, an operator.itemgetter() to take the second value from the tuple for sorting, then set the reverse attribute to get them in the order you want.
>>> from operator import itemgetter
>>> dic={'Tea': 35, 'Coffee': 35, 'Chocolate': 10}
>>> for key, value in sorted(dic.items(), key=itemgetter(1), reverse=True):
... print(key, value)
...
Tea 35
Coffee 35
Chocolate 10
Edit: If you want to sort by key as a secondary sort, we can simply pass a tuple of values, and Python will sort on the first value, then the second, etc... The only issue is using reverse will mean we get them in the wrong order. As a hack, we simply use the negative version of the value to sort without reverse:
>>> for key, value in sorted(dic.items(), key=lambda x: (-x[1], x[0])):
... print(key, value)
...
Coffee 35
Tea 35
Chocolate 10
.items()method instead.. – Martijn Pieters Jun 21 '12 at 13:17