help how to sort a list in order of 'n' in python without using inbuilt functions??

Dave Angel davea at davea.name
Fri May 24 08:33:57 EDT 2013


On 05/24/2013 04:04 AM, lokeshkoppaka at gmail.com wrote:
> i need to write a code which can sort the list in order of 'n' without use builtin functions
> can anyone help me how to do?
>

You could sort, but you couldn't print out the results, so what's the 
point?  In Python 3.3 at least, print() is a built-in function.

Is the homework assignment more clearly worded than your summary?  And 
if so, how far have you gotten on it?

-- 
DaveA



More information about the Python-list mailing list