[SYSU][大二下] 高级编程技术HW Week-3 Lecture-2

Question

教材中课后的练习,6-1到6-12,选一些写到你的博客上


Answer

''''' 
SYSU - [专选]高级编程技术 - Week3, Lecture2 HW    
by Duan    
2018.03.22
'''    


'''
6-1 人
'''
info = {'first_name': 'Ying', 'last_name': 'Jiang', 'age': 37, 
        'city' : 'Guangzhou'}
print(info['first_name'], info['last_name'], 'is', str(info['age']) + 
    'ys old', 'now and live in', info['city'] + '.')


'''
6-2 喜欢的数字
'''
favorite_num = {'Zhang San': 0, 'Li Si': 1, 'Wang wu': 2, 
    'Cao Cao': 3, 'Lv Bu': 4}
for key, value in favorite_num.items():
    print(key, "'s favorite number is\t", str(value))


'''
6-5 河流
'''
river = {'nile': 'egypt', 'amazon river': 'Brazil', 
    'the changjiang river': 'china'}
for river, nation in river.items():
    print('The', river.title(), 'runs through', nation.title())


'''
6-7 人
'''
people = [
    {'first_name': 'Ying', 'last_name': 'Jiang', 'city': 'Guangzhou'},
    {'first_name': 'Xueyi', 'last_name': 'Duan', 'city': 'Xiangyang'},
    {'first_name': 'Min', 'last_name': 'Huang', 'city': 'Wuhan'},
    ]
for person in people:
    print(person['first_name'].title(), person['last_name'].title(),
        'now live in', person['city'] + '.')


'''
6-8 宠物
'''
pets = [
    {
        'name': 'Zhima',
        'species': 'cat',
        'host': 'Xueyi Duan'
            },
    {
        'name': 'Pidan',
        'species': 'cat',
        'host': 'Yuerong Ding'
            },
]
for pet in pets:
    print(pet['name'], 'is a', pet['species'], 'whose host is', 
        pet['host'] + '.')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值