python iterable 和listdictionary的区别和联系

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python iterable 和listdictionary的区别和联系相关的知识,希望对你有一定的参考价值。

1 为什么一些函数的参数指定要iterable object的,但是也可以传入list为参数?

 因为list、dictionary都是iterable object。

在iterable object前面加上iter(),就会返回一个iterator。

2 iterable object和iterator的区别

iterator可以用next()来遍历访问。

iterable可以用for来遍历。

for的遍历是通过对iterable先进行iter(),获取iterator对象,然后再用next实现的。

for可以直接遍历iterable对象,也可以直接遍历iterator对象。

 

以上是关于python iterable 和listdictionary的区别和联系的主要内容,如果未能解决你的问题,请参考以下文章

python第二天学习总结

Python:Iterable和Iterator

Python中的iterable和iterator

python generator iterator和iterable object

python tuple 元组

python数据结构的性能