Python中的字典遍歷備忘
備忘一下python中的字典如何遍歷,沒有什么太多技術(shù)含量.僅供作為初學者的我參考.
#!/usr/bin/env python
# coding=utf-8
demoDict = {'1':'Chrome', '2':'Android'}
for key in demoDict.keys():
print key
for value in demoDict.values():
print value
for key in demoDict:
print key, demoDict[key]
for key, value in demoDict.items():
print key, value
for key in demoDict.iterkeys():
print key
for value in demoDict.itervalues():
print value
for key, value in demoDict.iteritems():
print key, value
print 'dict.keys()=', demoDict.keys(), ';dict.iterkeys()=', demoDict.iterkeys()
interitems和iterms區(qū)別
參考 http://stackoverflow.com/questions/10458437/python-what-is-the-difference-between-dict-items-and-dict-iteritems
相關(guān)文章
安裝conda搭建python環(huán)境保姆級教程(超詳細!)
這篇文章主要給大家介紹了關(guān)于安裝conda搭建python環(huán)境保姆級教程的相關(guān)資料,conda可以理解為一個工具,也是一個可執(zhí)行命令,其核心功能是包管理和環(huán)境管理,需要的朋友可以參考下2023-11-11
封裝?Python?時間處理庫創(chuàng)建自己的TimeUtil類示例
這篇文章主要為大家介紹了封裝?Python?時間處理庫創(chuàng)建自己的TimeUtil類示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步早日升職加薪2023-05-05
Pytorch中關(guān)于model.eval()的作用及分析
這篇文章主要介紹了Pytorch中關(guān)于model.eval()的作用及分析,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-02-02
如何解決pycharm中用matplotlib畫圖不顯示中文的問題
這篇文章主要介紹了如何解決pycharm中用matplotlib畫圖不顯示中文的問題,文章圍繞主題展開詳細的內(nèi)容介紹,具有一定的參考價值,感興趣的小伙伴可以參考一下2022-06-06
python中的easy_install工具,類似于Php中的pear,或者Ruby中的gem,或者Perl中的cpan,那是相當?shù)乃嵬崃巳绻胧褂?/div> 2013-02-02最新評論

