python从入门到实践第六章练习

'''
6-1 使用一个字典来存储一个熟人的信息,包括名、姓、年龄和居住的城市。该字典应包含键
first_name 、 last_name 、 age 和 city 。将存储在该字典中的每项信息都打印出来。
'''
friend = {'first_name':'zhang','last_name':'san','age':24,'city':'shanghai',}
print(friend['first_name'])
print(friend['last_name'])
print(friend['age'])
print(friend['city'])

'''
6-2 喜欢的数字 :使用一个字典来存储一些人喜欢的数字。请想出 5 个人的名字,并将这些名字用作字典中的键;
想出每个人喜欢的一个数字,并将这些数字作为值存储在字典中。
打印每个人的名字和喜欢的数字。为让这个程序更有趣,通过询问朋友确保数据是真实的。
'''
print('--------')
friends = {'zhangsan':4,'lisi':6,'wangwu':7,'xiaoming':8,'xiaohong':9}
for name,number in friends.items():
print(name.title()+'`s favorite number is '+str(friends[name]))
print('--------')
friends = {'zhangsan': 4, 'lisi': 6, 'wangwu': 7, 'xiaoming': 8, 'xiaohong': 9}
for name, number in friends.items():
print(name.title() + ' your favorite number is ' + str(number) + '?')

if 'zhangsan' in friends.keys():#避免重复.keys()避免了for语句历遍所有的value并输出

    if number == 4:
        print('yes')
print(name.title() + '`s favorite number is ' + str(number) + '.')
if 'lisi' in friends.keys():
    if number == 6:
        print('yes')
print(name.title() + '`s favorite number is ' + str(number) + '.')
if 'wangwu' in friends.keys():
    if number == 7:
        print('yes')
print(name.title() + '`s favorite number is ' + str(number) + '.')
if 'xiaoming' in friends.keys():
    if number == 8:
        print('yes')
print(name.title() + '`s favorite number is ' + str(number) + '.')
if 'xiaohong' in friends.keys():
    if number == 9:
        print('yes')
print(name.title() + '`s favorite number is ' + str(number) + '.')

'''
6-3 词汇表 : Python 字典可用于模拟现实生活中的字典,但为避免混淆,我们将后者称为词汇表。
想出你在前面学过的 5 个编程词汇,将它们用作词汇表中的键,并将它们的含义作为值存储在词汇表中。
以整洁的方式打印每个词汇及其含义。为此,你可以先打印词汇,在它后面加上一个冒号,
再打印词汇的含义;也可在一行打印词汇,再使用换行符( \n )插入一个空行,
然后在下一行以缩进的方式打印词汇的含义。
'''
print('--------')
vocabulars = {'apple':'苹果','banana':'香蕉','watermalon':'西瓜','lemon':'柠檬','strawberry':'草莓'}
for vocabular,mean in vocabulars.items():
print('\n'+vocabular)
print(vocabulars[vocabular])
'''
6-4 词汇表 2 :既然你知道了如何遍历字典,现在请整理你为完成练习 6-3 而编写的代码,将其中的一系列
print 语句替换为一个遍历字典中的键和值的循环。确定该循环正确无误后,
再在词汇表中添加 5 个 Python 术语。当你再次运行这个程序时,这些新术语及其含义将自动包含在输出中。
'''
print('--------')
vocabulars = {'apple':'苹果','banana':'香蕉','watermalon':'西瓜','lemon':'柠檬','strawberry':'草莓'}
for vocabular in vocabulars.keys():
print(vocabular)
for mean in vocabulars.values():
print(mean)
for vocabular,mean in vocabulars.items():
print(vocabular+':'+'\t'+vocabulars[vocabular])

'''
6-5 河流 :创建一个字典,在其中存储三条大河流及其流经的国家。其中一个键 — 值对可能是 'nile': 'egypt' 。
使用循环为每条河流打印一条消息,如 “The Nile runs through Egypt.” 。
使用循环将该字典中每条河流的名字都打印出来。
使用循环将该字典包含的每个国家的名字都打印出来。
'''
rivers = {'nile': 'egypt','amazon': 'Brazil ', 'Yangtze': 'china' }
for river,country in rivers.items():
print('The '+river.title()+' runs through '+country.title())
for river in rivers.keys():
print(river.title())
for country in rivers.values():
print(country.title())

'''
6-6 调查 :在 6.3.1 节编写的程序 favorite_languages.py 中执行以下操作。
创建一个应该会接受调查的人员名单,其中有些人已包含在字典中,而其他人未包含在字典中。
遍历这个人员名单,对于已参与调查的人,打印一条消息表示感谢。对于还未参与调查的人,打印一条消息邀请他参与调查。
'''
print('--------')
favorite_languages = {
'jen':'python',
'sarah':'C',
'edward':'ruby',
'phil':'C',
}
names = ['jen','edward','phil','john','david']
for name in names:
if name in favorite_languages.keys():
print(name.title()+' thank you for taking the poll '+'.')
else:
print(name.title()+' please take part in the poll'+'.')
'''
6-7 人 :在为完成练习 6-1 而编写的程序中,再创建两个表示人的字典,然后将这三个字典都存储
在一个名为 people 的列表中。遍历这个列表,将其中每个人的所有信息都打印出来。
'''
print('--------')
friend_1 = {'first_name':'zhang','last_name':'san','age':24,'city':'shanghai',}
friend_2 = {'first_name':'li','last_name':'si','age':28,'city':'beijing',}
friend_3 = {'first_name':'wang','last_name':'wu','age':17,'city':'chengdu',}
people = [friend_1,friend_2,friend_3]
for friend in people:
print(friend)

'''
6-8 宠物 :创建多个字典,对于每个字典,都使用一个宠物的名称来给它命名;在每个字典中,
包含宠物的类型及其主人的名字。将这些字典存储在一个名为 pets的列表中,
再遍历该列表,并将宠物的所有信息都打印出来。
'''
print('--------')
pets = []
wangcai = {'type':'dog','host_name':'qiangdong'}
pets.append(wangcai)#易犯的错误:pets.append('wangcai').这样会出现仅仅把‘wangcai’这个字符存入列表了,并没有将字典存入列表。
zhaocai = {'type':'cat','host_name':'mayun'}
pets.append(zhaocai)
laifu = {'type':'pig','host_name':'yonghao'}
pets.append(laifu)
for pet in pets:
print(pet)
'''
6-9 喜欢的地方 :创建一个名为 favorite_places 的字典。在这个字典中,将三个人的名字用作键;
对于其中的每个人,都存储他喜欢的 1~3 个地方。为让这个练习更有趣些,
可让一些朋友指出他们喜欢的几个地方。遍历这个字典,并将其中每个人的名字及其喜欢的地方打印出来。
'''
print('--------')
favorite_places = {'zhangsan':{'nanjing','xihu'},
'lisi':{'emeishang','dujiangyan','zhangjiajie'},
'wangwu':{'jiuhuashang'}
}
for name,places in favorite_places.items():
if name in favorite_places.keys():#如果改成for name in favorite_places.keys():则会出现多余重复。
print(name.title() + 's favorite places are\t') for place in favorite_places[name]: print(place) ''' 6-10 喜欢的数字 :修改为完成练习 6-2 而编写的程序, 让每个人都可以有多个喜欢的数字,然后将每个人的名字及其喜欢的数字打印出来. ''' print('--------') friends = {'zhangsan':{4,5}, 'lisi':{6,7,8}, 'wangwu':{7,12,56}, 'xiaoming':{8,25}, 'xiaohong':{9}, } for name,numbers in friends.items(): if name in friends.keys(): print(name.title()+'s favorite numbers are:')
for numbers in friends[name]:
print(numbers)
'''
6-11 城市 :创建一个名为 cities 的字典,其中将三个城市名用作键;对于每座城市,都创建一个字典,
并在其中包含该城市所属的国家、人口约数以及一个有关该城市的事实。在表示每座城市的字典中,
应包含 country 、 population 和 fact 等键。将每座城市的名字以及有关它们的信息都打印出来。
'''
print('--------')
cities = {'shanghai':{'country':'China','populaton':20000000,'fact':'Financial Center'},
'biejing':{'country':'China','populaton':25000000,'fact':'political Center'},
'paris':{'country':'France','populaton':3000000,'fact':'City of romance'},
'new york':{'country':'America','populaton':2700000,'fact':'International metropolis'},
}
for city_name,city_info in cities.items():
if city_name in cities.keys():
print(city_name.title()+'`s informations are:')
print(cities[city_name])

你可能感兴趣的:(python从入门到实践第六章练习)