主頁 > 知識庫 > Python字典中items()函數案例詳解

Python字典中items()函數案例詳解

熱門標簽:地圖標注多個 萊蕪電信外呼系統(tǒng) 企業(yè)微信地圖標注 鶴壁手機自動外呼系統(tǒng)違法嗎 怎么辦理400客服電話 B52系統(tǒng)電梯外呼顯示E7 高德地圖標注收入咋樣 銀川電話機器人電話 沈陽防封電銷電話卡

Python3:字典中的items()函數

一、Python2.x中items():

  和之前一樣,本渣渣先貼出來python中help的幫助信息:

>>> help(dict.items)
Help on method_descriptor:

items(...)
    D.items() -> list of D's (key, value) pairs, as 2-tuples
>>> help(dict.iteritems)
Help on method_descriptor:

iteritems(...)
    D.iteritems() -> an iterator over the (key, value) items of D
>>> help(dict.viewitems)
Help on method_descriptor:

viewitems(...)
    D.viewitems() -> a set-like object providing a view on D's items

       在Python2.x中,items( )用于 返回一個字典的拷貝列表【Returns a copy of the list of all items (key/value pairs) in D】,占額外的內存。

  iteritems() 用于返回本身字典列表操作后的迭代【Returns an iterator on all items(key/value pairs) in D】,不占用額外的內存。

>>> d={1:'one',2:'two',3:'three'}
>>> type(d.items())
type 'list'>
>>> type(d.iteritems())
type 'dictionary-itemiterator'>
>>> type(d.viewitems())
type 'dict_items'>

二、Python3.x中items():

>>> help(dict.items)
Help on method_descriptor:

items(...)
    D.items() -> a set-like object providing a view on D's items

  Python 3.x 里面,iteritems() 和 viewitems() 這兩個方法都已經廢除了,而 items() 得到的結果是和 2.x 里面 viewitems() 一致的。在3.x 里 用 items()替換iteritems() ,可以用于 for 來循環(huán)遍歷。

>>> d={1:'one',2:'two',3:'three'}
>>> type(d.items())
class 'dict_items'>

簡單的例子:

d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59, 'Paul': 74 }
sum = 0
for key, value in d.items():
    sum = sum + value
    print(key, ':' ,value)
print('平均分為:' ,sum /len(d))

輸出結果:

D:\Users\WordZzzz\Desktop>python3 test.py

Adam : 95

Lisa : 85

Bart : 59

Paul : 74

平均分為:78.25

到此這篇關于Python字典中items()函數案例詳解的文章就介紹到這了,更多相關Python字典中items()函數內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python中使用items()方法返回字典元素對的教程
  • Python中dictionary items()系列函數的用法實例
  • 淺談Python的字典鍵名可以是哪些類型
  • python字典的元素訪問實例詳解
  • python字典遍歷數據的具體做法
  • python用函數創(chuàng)造字典的實例講解

標簽:湘西 葫蘆島 烏魯木齊 呼倫貝爾 安慶 三亞 銀川 呼倫貝爾

巨人網絡通訊聲明:本文標題《Python字典中items()函數案例詳解》,本文關鍵詞  Python,字典,中,items,函數,;如發(fā)現本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Python字典中items()函數案例詳解》相關的同類信息!
  • 本頁收集關于Python字典中items()函數案例詳解的相關信息資訊供網民參考!
  • 推薦文章