Sorting Dictionary Programming Software Development by FAITH2011 [B][COLOR="Red"]Hi all, Clould someone please tell how to use the sorted function or equivalent to this function in Python 3 so that I can sort a dictionary. I cannot find any help on this. Thanks for your time [/COLOR][/B] Re: Help finding modem driver for laptop Hardware and Software Microsoft Windows by Catweazle You clould try the M800 driver from this website: [url="http://… Re: Regular expression to extract content between tags from an html output Programming Software Development by JamesCherrill On the other hand you clould just hack it... If there's just one `<tr&… Re: Sorting Dictionary Programming Software Development by TrustyTony You could be more specific, maybe this helps? [CODE]this_dict = {5:'ada', 3:'pascal', 4:'lisp', 1:'Python', 2:'Icon', 3:'Visual Basic'} print('The programming languages in key order are:') print(', '.join(repr(this_dict[key]) for key in sorted(this_dict))) [/CODE] Re: Sorting Dictionary Programming Software Development by FAITH2011 Thanks TonyJv that works fine ty Re: Sorting Dictionary Programming Software Development by seanbp It is impossible to sort a dictionary. Re: Sorting Dictionary Programming Software Development by FAITH2011 mistake wrong posting