1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
>>> 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 |
Why do I get this traceback?
Users browsing this thread: 1 Guest(s)