What’s New In Python 3.0
“dict methods dict.keys(), dict.items() and dict.values() return “views” instead of lists. For example, this no longer works: k = d.keys(); k.sort(). Use k = sorted(d) instead” — yeah, let’s not use objects, those are for sissies.