📜  可迭代是什么意思 - 任何代码示例

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

代码示例1
#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.