zip(), dict(), itertools.repeat(), list(迭代器)
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                zip(), dict(), itertools.repeat(), list(迭代器)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                
                            
                            
                            zip(), dict(), itertools.repeat(), list(迭代器)    *. zip(), dict()
def demo_zip_dict():keys = ['a', 'b', 'c']values = [1, 2, 3]entrys = zip(keys, values)print(entrys)dictionary = dict(entrys)print(dictionary)
----
[('a', 1), ('b', 2), ('c', 3)]
{'a': 1, 'c': 3, 'b': 2}*. itertools.repeat()
def demo_iter_repeat():repeat_versions = itertools.repeat("0.0.1")images = ("a", "b")dic = dict(zip(images, repeat_versions))print(dic)print(list(dic))
----
{'a': '0.0.1', 'b': '0.0.1'}
['a', 'b']*. list作用于迭代器,將其轉換為list。
list(self.__apps.items())  
                        
                        
                        ?
posted on 2019-06-19 21:28 wenlin_gk 閱讀(...) 評論(...) 編輯 收藏轉載于:https://www.cnblogs.com/wenlin-gk/p/11055056.html
總結
以上是生活随笔為你收集整理的zip(), dict(), itertools.repeat(), list(迭代器)的全部內容,希望文章能夠幫你解決所遇到的問題。
                            
                        - 上一篇: ServletContextListen
 - 下一篇: HBuilder 模拟器连接默认端口