Python Forum
Why do I get this traceback?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why do I get this traceback?
#1
>>> 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 iterable
also, 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.
likes this post
Reply


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

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020