Python练习8---字典的运用

Python 字典(Dictionary) items() 函数:dict.items(),无参数
返回值:以列表返回可遍历的(键, 值) 元组数组。
可以参考:http://www.runoob.com/python/att-dictionary-has_key.html
遍历字典实例

for key,values in  dict.items():
    print key,values

1、计算一天的生活费

#!python
#-*- coding: utf8 -*-
import os,sys
dict={}
dict["早餐"]=10
dict["中餐"]=22
dict["晚餐"]=23
#函数
def output(k,v=" lists"):
    print k,v

#生活计算器
sum = 0
for k,v in dict.items():
    sum = sum+v
print "一天花费小计: ",sum

运算结果
Python练习8---字典的运用_第1张图片

2、计算收入

#!python
#-*- coding: utf8 -*-
import os,sys
dict={}
dict["早餐"]=-10.01
dict["中餐"]=-22.13
dict["晚餐"]=-23
dict["工资收入"]=200.81

#函数
def output(k,v=" lists"):
    print k,v

#生活计算器
sum = 0.0
for k,v in dict.items():
    sum = sum+v
print "一天小计,sum  小计: ",sum

Python练习8---字典的运用_第2张图片

你可能感兴趣的:(Python)