您的位置:首页 > 编程语言 > Python开发

《Python编程:从入门到实践》课后练习3-1到3-11

2018-03-14 15:55 761 查看

3-1

将一些朋友的姓名存储在一个列表中,并将其命名为names 。依次访问该列表中的每个元素,从而将每个朋友的姓名都打印出来。

names = ['Leo', 'Jack', 'Lily', 'Evie', 'Jack']
for name in names:
print(name)


3-2

继续使用练习3-1中的列表,但不打印每个朋友的姓名,而为每人打印一条消息。每条消息都包含相同的问候语,但抬头为相应朋友的姓名。

names = ['Leo', 'Jack', 'Lily', 'Evie', 'Jack']
for name in names:
print(name + ', what\'s up?')


3-3

想想你喜欢的通勤方式,如骑摩托车或开汽车,并创建一个包含多种通勤方式的列表。根据该列表打印一系列有关这些通勤方式的宣言,如“I would

like to own a Honda motorcycle”。

trans = ['bus', 'car', 'bike', 'motorcycle']
for i in trans:
print('I would like to own a ' + i + '.')


3-4

如果你可以邀请任何人一起共进晚餐(无论是在世的还是故去的),你会邀请哪些人?请创建一个列表,其中包含至少3个你想邀请的人;然后,使用

这个列表打印消息,邀请这些人来与你共进晚餐。

guests = ['Platon', 'Shakespeare', 'Goehte']
for guest in guests:
print(guest + ', I would like to invite you to dinner.')


3-5

你刚得知有位嘉宾无法赴约,因此需要另外邀请一位嘉宾。

以完成练习3-4时编写的程序为基础,在程序末尾添加一条print 语句,指出哪位嘉宾无法赴约。

修改嘉宾名单,将无法赴约的嘉宾的姓名替换为新邀请的嘉宾的姓名。

再次打印一系列消息,向名单中的每位嘉宾发出邀请。

print(guests[2] + 'can\'t join us')
guests[2] = 'Hoffman'
for guest in guests:
print(guest + ', I would like to invite you to dinner.')


3-6

你刚找到了一个更大的餐桌,可容纳更多的嘉宾。请想想你还想邀请哪三位嘉宾。

以完成练习3-4或练习3-5时编写的程序为基础,在程序末尾添加一条print 语句,指出你找到了一个更大的餐桌。

使用insert() 将一位新嘉宾添加到名单开头。

使用insert() 将另一位新嘉宾添加到名单中间。

使用append() 将最后一位新嘉宾添加到名单末尾。

打印一系列消息,向名单中的每位嘉宾发出邀请。

print('I find a larger table.')
guests.insert(0, 'Homeros')
guests.insert(2, 'Caesar')
guests.append('Thoreau')
for guest in guests:
print(guest + ', I would like to invite you to dinner.')


3-7

你刚得知新购买的餐桌无法及时送达,因此只能邀请两位嘉宾。

以完成练习3-6时编写的程序为基础,在程序末尾添加一行代码,打印一条你只能邀请两位嘉宾共进晚餐的消息。

使用pop() 不断地删除名单中的嘉宾,直到只有两位嘉宾为止。每次从名单中弹出一位嘉宾时,都打印一条消息,让该嘉宾知悉你很抱歉,无法邀请他来共进晚餐。

对于余下的两位嘉宾中的每一位,都打印一条消息,指出他依然在受邀人之列。

使用del 将最后两位嘉宾从名单中删除,让名单变成空的。打印该名单,核实程序结束时名单确实是空的。

print('I can only invite two guests.')
while(len(guests) > 2):
print(guests.pop() + ', I\'m sorry that there\'s no seat for you.')
for guest in guests:
print(guest + ', I would like to invite you to dinner.')
del guests[1]
del guests[0]
print(guests)


3-8

想出至少5个你渴望去旅游的地方。

将这些地方存储在一个列表中,并确保其中的元素不是按字母顺序排列的。

按原始排列顺序打印该列表。不要考虑输出是否整洁的问题,只管打印原始Python列表。

使用sorted() 按字母顺序打印这个列表,同时不要修改它。

再次打印该列表,核实排列顺序未变。

使用sorted() 按与字母顺序相反的顺序打印这个列表,同时不要修改它。

再次打印该列表,核实排列顺序未变。

使用reverse() 修改列表元素的排列顺序。打印该列表,核实排列顺序确实变了。

使用reverse() 再次修改列表元素的排列顺序。打印该列表,核实已恢复到原来的排列顺序。

使用sort() 修改该列表,使其元素按字母顺序排列。打印该列表,核实排列顺序确实变了。

使用sort() 修改该列表,使其元素按与字母顺序相反的顺序排列。打印该列表,核实排列顺序确实变了。

country = ['American', 'Russia', 'France', 'Australia', 'Switzerland']
print(country)
print(sorted(country))
print(country)
print(sorted(country, reverse = True))
print(country)
country.reverse()
print(country)
country.reverse()
print(country)
country.sort()
print(country)
country.sort(reverse = True)
print(country)


3-9

在完成练习3-4~练习3-7时编写的程序之一中,使用len() 打印一条消息,指出你邀请了多少位嘉宾来与你共进晚餐。

guests = ['Platon', 'Shakespeare', 'Goehte']
for
4000
guest in guests:
print(guest + ', I would like to invite you to dinner.')
print('I invite ' + str(len(guests)) + ' guests to dinner.')


3-10

想想可存储到列表中的东西,如山岳、河流、国家、城市、语言或你喜欢的任何东西。编写一个程序,在其中创建一个包含这些元素的列

表,然后,对于本章介绍的每个函数,都至少使用一次来处理这个列表。

cities = ['Peking', 'Shanghai', 'Guangzhou', 'Hongkong']
print(cities)
cities[0] = 'Beijing'
print(cities)
cities.append('Shenzhen')
print(cities)
cities.insert(3, 'Wuhan')
print(cities)
del cities[1]
print(cities)
cities.pop()
print(cities)
cities.remove('Guangzhou')
print(cities)
print(sorted(cities))
cities.reverse()
print(cities)
cities.sort()
print(cities)
cities.sort(reverse = True)
print(cities)


3-11

如果你还没有在程序中遇到过索引错误,就尝试引发一个这种错误。在你的一个程序中,修改其中的索引,以引发索引错误。关闭程序前,务

必消除这个错误。

cities = ['Peking', 'Shanghai', 'Guangzhou', 'Hongkong']
print(cities[4])
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python 编程