Вопрос

I have a simple function with the following

comdList = range(0,27)
for t, in comdList:
    print t

However it returns a in object not iterable error

outside the function it works fine. Whats going on??

Это было полезно?

Решение

Try this:

for t in comdList:
    print t

The extra comma after the t variable was causing the error, because of it Python thinks that the iterable is going to return a sequence of 1-tuples to unpack - for example: ((1,), (2,)) but instead it received an iterable of single elements.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top