BGL中文网

Python内置函数reversed()用法分析

发布日期:2025-01-04 11:34    点击次数:199

本文实例讲述了Python内置函数reversed()用法。分享给大家供大家参考,具体如下: reversed()函数是返回序列seq的反向访问的迭代器。参数可以是列表,元组,字符串,不改变原对象。 1》参数是列表 2》参数是列表 3》参数是元组 4》参数是字符串 5》参数是字符串 为什么reversed()之后,第二次for循环或第二次list()或第二次tuple()或第二次join()得到的结果为空?我们以第2个例子具体说明一下: That's because reversed creates an iterator, which is already spent when you're calling list(ll) for the second time. The reason is that ll is not the reversed list itself, but a listreverseiterator. So when you call list(ll) the first time, it iterates over ll and creates a new list from the items output from that iterator.When you do it a second time, ll is still the original iterator and has already gone through all the items, so it doesn't iterate over anything, resulting in an empty list. 小编来翻译一下: 这是因为反向创建了一个迭代器,该迭代器在第二次调用列表(LL)时已经使用过了。 其原因就是ll不是反转列表本身,而是一个列表反向迭代器。所以当你第一次调用列表(ll),它会遍历ll并且创建一个新的列表从项目输出迭代器。当你再进行一次,ll仍然是原来的迭代器,已经经历了所有的项目,所以它不会再遍历什么,这就造成了空列表。 总结:reversed()之后,只在第一次遍历时返回值。 更多关于Python相关内容感兴趣的读者可查看本站专题:《Python函数使用技巧总结》、《Python数据结构与算法教程》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》 希望本文所述对大家Python程序设计有所帮助。 您可能感兴趣的文章:python基础之reverse和reversed函数的介绍及使用python中sort sorted reverse reversed函数的区别说明Python reversed函数及使用方法解析Python reversed函数用法小结

 




Powered by BGL中文网 @2013-2022 RSS地图 HTML地图

Copyright Powered by365站群 © 2013-2024