def sortedDictValues1(adict): items = adict.items() items.sort() return [value for key, value in items] ... [ v for v in sorted(di.values())] ...
確定! 回上一頁