Python编程:从⼊门到实践的动⼿试⼀试练习答案(第六章)以下内容⾮标准答案,是我个⼈练习内容,仅供参考:
如有不准确,希望指出
# ~ #6-1
user_information ={
'first_name':'王',
'last_name':'⼩',
'age':18,
'city':'中国上海'
}
print('姓: '+ user_information['first_name'])
print('名: '+ user_information['last_name'])
print('年龄: '+str(user_information['age']))
print('城市: '+ user_information['city'])
# ~ #6-2
like_nums ={
'name_1':'王⼩',
'like_num_1':18,
'name_2':'陈四',
'like_num_2':13,
'name_3':'李维',
'like_num_3':6,
'name_4':'龙五',
'like_num_4':9
}
print(
like_nums['name_1']+'喜欢的数字是'+str(like_nums['like_num_1'])
)
print(
like_nums['name_2']+'喜欢的数字是'+str(like_nums['like_num_2'])
)
print(
like_nums['name_3']+'喜欢的数字是'+str(like_nums['like_num_3'])
)
print(
like_nums['name_4']+'喜欢的数字是'+str(like_nums['like_num_4'])
)
python ={
'python_1':'print',
'python_1_1':'打印结果或输出结果',
'python_2':'append',
'python_2_2':'在列表或者元组中添加元素',
python编程:从入门到实践第二版'python_3':'str',
'python_3_3':'转换元素为字符',
'python_4':'int',
'python_4_4':'转换为整数',
'python_5':'range',
'python_5_5':'⽣成数字表列表',
}
print('python词汇: '+ python['python_1']+
'\n含义: '+ python['python_1_1']+
'\npython词汇: '+ python['python_2']+
'\n含义: '+ python['python_2_2']+
'\npython词汇: '+ python['python_3']+
'\n含义: '+ python['python_3_3']+
'\npython词汇: '+ python['python_4']+
'\n含义: '+ python['python_4_4']+
'\npython词汇: '+ python['python_5']+
'\n含义: '+ python['python_5_5']
)
# ~ #6-4
python ={
'print':'打印结果或输出结果',
'append':'在列表或者元组中添加元素',
'str':'转换元素为字符',
'int':'转换为整数',
'range':'⽣成数字表列表',
'title':'⾸字母⼤写',
'del':'删除内容',
'zip':'合并列表数据',
'teyp':'显⽰类型',
'%':'算数符号,除法计算余数'
}
for python, value in python.items():
print('\n'+ python.title())
print(value)
# ~ #6-5
river ={
'尼罗河':'埃及',
'亚马逊':'巴西',
'长江':'中国'
}
for river,nation in river.items():
print('\n世界三⼤运河的'+ river +'流经'+ nation +'。')
'jen':'python',
'sarah':'c',
'edward':'ruby',
'phil':'pythone'
}
names =[
'jen','sarah','edward',
'phil','agnes','charles'
]
for name in names:
if name in favorite_languages.keys():
print(name +'谢谢您帮助调查') else:
print(name +'请⽴即参加调查')
# ~ #6-7
user_1 ={
'first_name':'王',
'last_name':'⼩',
'age':18,
'city':'上海'
}
user_2 ={
'first_name':'丘',
'last_name':'⾦',
'age':16,
'city':'东北'
}
user_3 ={
'first_name':'朗姆',
'last_name':'苛杂',
'age':19,
'city':'青海'
}
peoples =[user_1,user_2,user_3]
for people in peoples:
print(people)
# ~ #6-8
⼩球={
'品种':'⾦⽑',
'主⼈':'⾦星'
}
哈喽={
'品种':'萨摩',
'主⼈':'路⼗三'
}
⼝⽔={
'品种':'英国⽃⽜⽝',
'主⼈':'冉尘尘'
}
pets =[⼩球,哈喽,⼝⽔]
for pet in pets:
print(pet)
'agnes':'中国⼤理,⽇本⼤阪',
'alice':'美国拉斯维加斯,埃及,中国拉萨',
'Emma':'上海青浦,法国巴黎',
'Juliette':'英国伦敦,⽇本神奈川,法国尼斯',
}
for name,place in favorite_places.items():
print(name +'最喜欢去的国家和地⽅是: '+ place)
# ~ #6-10
like_nums ={
'王⼩':[18,27,19],
'陈四':[13,12,9],
'李维':[6,7,17],
'龙五':[9,16,18]
}
for name,num in like_nums.items():
print(name +'最喜欢的数字是:'+str(num))
# ~ #6-11
cities ={
'上海':{
'country':'中国',
'population':'2428万',
'fact':'国务院批复确定的中国国际经济、⾦融、贸易、航运、科技创新中⼼。', },
'纽约':{
'country':'美国',
'population':'851万',
'fact':'美国第⼀⼤城市及第⼀⼤港⼝。',
},
'东京':{
'country':'⽇本',
'population':'1350万',
'fact':'全球规模最⼤的都会区之⼀,亦为⽇本最⼤的城市。',
}
}
for city,info in cities.items():
country = info['country']
population = info['population']
fact = info['fact']
print('\n城市: '+ city +
'\n国家:'+ country +
'\n⼈⼝数量: '+ population +
'\n'+ city +'是'+ fact
)
# ~ #6-12
略
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论