cc is not iterable
The error message "cc is not iterable" typically occurs when you try to loop over or access individual elements of an object that is not iterable.
An iterable is an object that can be looped over, such as a list, tuple, or string. To use loop constructs like for loops or list comprehensions, the object being iterated over must be iterable.
If you encounter the "cc is not iterable" error, it means that the object represented by the variable "cc" does not support iteration. To resolve this issue, you can check the type of the object and ensure it is iterable before trying to iterate over it. If it is not iterable, you may need to use a different approach to achieve your desired outcome
原文地址: https://www.cveoy.top/t/topic/iHed 著作权归作者所有。请勿转载和采集!