📜  可迭代的含义 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:17.158000             🧑  作者: Mango

代码示例2
#An iterable is any Python object capable of returning its members one at a time, permitting it to be iterated over in a for-loop. Familiar examples of iterables include lists, tuples, and strings - any such sequence can be iterated over in a for-loop.