>>> def orderize(array): ... is_complete = False ... i, x = 0 ... ordered_list = [] ... while not is_complete: ... if array[i] == x: ... ordered_list.append(array[i]) ... if ordered_list.__len__() == 5: ... is_complete = True; continue ... if i == 4: ... i, x = 0 ... continue ... i+=1 ... x+=1 ... >>> orderize((4,3,2,1,0)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 3, in orderize TypeError: 'int' object is not iterablealso, why any other optimal solutions for ordering a list? noteworthy: the things getting ordered will be an object with an attribute that has the value of where it needs to be... I just noticed that this would forever loop.
Why do I get this traceback?
Messages In This Thread |
Why do I get this traceback? - by Gengar - Sep-20-2016, 04:43 AM
RE: Why do I get this traceback? - by micseydel - Sep-20-2016, 04:55 AM
RE: Why do I get this traceback? - by Gengar - Sep-20-2016, 05:02 AM
RE: Why do I get this traceback? - by micseydel - Sep-20-2016, 05:09 AM
RE: Why do I get this traceback? - by nilamo - Sep-20-2016, 02:58 PM
|
Users browsing this thread: 1 Guest(s)