3-1 姓名: 将一些朋友的姓名存储在一个列表中,并将其命名为names 。依次访问该列表中的每个元素,从而将每个朋友的姓名都打印出来。
3-2 问候语: 继续使用练习3-1中的列表,但不打印每个朋友的姓名,而为每人打印一条消息。每条消息都包含相同的问候语,但抬头为相应朋友的姓名。
知识点分析:
列表元素的访问
代码:
names = ['Zachary', 'Charlie', 'Alice', 'Neo']
print(names[0])
print(names[1])
print(names[-2])
print(names[-1])
#Have a try about traverse
for name in names:
print("Hello "+name)
3-4 嘉宾名单 :如果你可以邀请任何人一起共进晚餐(无论是在世的还是故去的),你会邀请哪些人?请创建一个列表,其中包含至少3个你想邀请的人;然后,使用这个列表打印消息,邀请这些人来与你共进晚餐。
3-5 修改嘉宾名单 :你刚得知有位嘉宾无法赴约,因此需要另外邀请一位嘉宾。.再次打印一系列消息,向名单中的每位嘉宾发出邀请。
3-6 添加嘉宾 :你刚找到了一个更大的餐桌,可容纳更多的嘉宾。请想想你还想邀请哪三位嘉宾。.打印一系列消息,向名单中的每位嘉宾发出邀请。
3-7 缩减名单 :你刚得知新购买的餐桌无法及时送达,因此只能邀请两位嘉宾。.使用del 将最后两位嘉宾从名单中删除,让名单变成空的。打印该名单,核实程序结束时名单确实是空的。
3-9 晚餐嘉宾 :在完成练习3-4~练习3-7时编写的程序之一中,使用len() 打印一条消息,指出你邀请了多少位嘉宾来与你共进晚餐。
知识点分析:
列表方法的综合运用,包括修改、添加、删除、长度获取等
代码:
#3-4
names = ['Zachary', 'Charlie', 'Alice', 'Neo']
for name in names:
print(name+", would you like to have dinner with me tonight?")
#3-5
print("\nI'm sorry that "+names[2]+" couldn't come")
names[2] = 'Bob'
for name in names:
print(name+", would you like to have dinner with me tonight?")
#3-6
print("\nI'm glad that we have found a bigger dinner table")
names.insert(0, 'Eddy')
names.insert(2, 'Felix')
names.append('Ricky')
for name in names:
print(name+", would you like to have dinner with me tonight?")
#3-7
print("\nHow regretful that the new dinner table won't arrive in time and only 2 can be invited")
print(names.pop(1)+", I'm sorry that we can't have dinner together") #to pop one specified element
while len(names) > 2:
print(names.pop()+", I'm sorry that we can't have dinner together")
for name in names:
print(name + ", you are still invited, I'm still waiting for your coming")
print(str(len(names))+" guests are invited finally")
del names[0]
del names[0] #not names[1]
'''
del names[1]
del names[0]
'''
#del names is not we want (namelist is still existing)
print(names)
3-8 放眼世界 :想出至少5个你渴望去旅游的地方。
.使用sort() 修改该列表,使其元素按与字母顺序相反的顺序排列。打印该列表,核实排列顺序确实变了。
知识点分析:
列表组织方法的综合运用,包括排序、反转等
代码:
places = ['England', 'Russia', 'America', 'Germany', 'Australia']
print(places)
print(sorted(places))
print(places)
print(sorted(places, reverse = True))
print(places)
places.reverse()
print(places)
places.reverse()
print(places)
places.sort()
print(places)
places.sort(reverse = True)
print(places)
4-1 比萨 :想出至少三种你喜欢的比萨,将其名称存储在一个列表中,再使用for 循环将每种比萨的名称都打印出来。
.修改这个for 循环,使其打印包含比萨名称的句子,而不仅仅是比萨的名称。对于每种比萨,都显示一行输出,如“I like pepperoni pizza”。
.在程序末尾添加一行代码,它不在for 循环中,指出你有多喜欢比萨。输出应包含针对每种比萨的消息,还有一个总结性句子,如“I really love pizza!”。
4-11 你的比萨和我的比萨 :在你为完成练习4-1而编写的程序中,创建比萨列表的副本,并将其存储到变量friend_pizzas 中,再完成如下任务。
.在原来的比萨列表中添加一种比萨。
.在列表friend_pizzas 中添加另一种比萨。
.核实你有两个不同的列表。为此,打印消息“My favorite pizzas are:”,再使用一个for 循环来打印第一个列表;打印消息“My friend's favorite pizzas are:”,再使用一个for 循环来打印第二个列表。核实新增的比萨被添加到了正确的列表中。
知识点分析:列表的遍历,循环、缩进的使用,列表的复制
代码:
#4-1
pizzas = ['beef', 'pork', 'fruit']
for pizza in pizzas:
print("I like "+pizza+" pizza.")
print("I really love pizza!")
#4-11
friend_pizzas = pizzas[:]
pizzas.append('fish')
friend_pizzas.append('vegetable')
print("My favourite pizzas are:")
for pizza in pizzas:
print(pizza+' pizza')
print("My friend's favourite pizzas are:")
for pizza in friend_pizzas:
print(pizza+' pizza')
4-2 动物 :想出至少三种有共同特征的动物,将这些动物的名称存储在一个列表中,再使用for 循环将每种动物的名称都打印出来。
.在程序末尾添加一行代码,指出这些动物的共同之处,如打印诸如“Any of these animals would make a great pet!”这样的句子。
知识点分析:列表的遍历,循环、缩进的使用
代码:
#4-2
animals = ['cat', 'dog', 'fish']
for animal in animals:
print('A '+animal+' would make a great pet.')
print('Any of these animals would make a great pet!')
4-3 数到20 :使用一个for 循环打印数字1~20(含)。
知识点分析:range()函数的应用——用于for循环
代码:
for i in range(1,21): #not 20, and don't forget ':'
print(i)
4-4 一百万 :创建一个列表,其中包含数字1~1 000 000,再使用一个for 循环将这些数字打印出来。
知识点分析:range()函数的应用——用于创建数值列表
代码:
nums = list(range(1,1000001))
for num in nums:
print(num)
4-5 计算1~1 000 000的总和 :创建一个列表,其中包含数字1~1 000 000,再使用min() 和max() 核实该列表确实是从1开始,到1 000 000结束的。另外,对这个列表调用函数sum() ,看看Python将一百万个数字相加需要多长时间。
知识点分析:数值列表的创建及简单统计计算
代码:
nums = list(range(1,1000001))
print(min(nums))
print(max(nums))
print(sum(nums))
#really fast!
知识点分析:range()函数的第三参数
代码:
odds = list(range(1,21,2))
for num in odds:
print(num)
4-7 3的倍数 :创建一个列表,其中包含3~30内能被3整除的数字;再使用一个for 循环将这个列表中的数字都打印出来。
知识点分析:range()函数的第三参数
代码:
nums = list(range(3,31,3))
for num in nums:
print(num)
4-9 立方解析 :使用列表解析生成一个列表,其中包含前10个整数的立方。
4-10 切片 :选择你在本章编写的一个程序,在末尾添加几行代码,以完成如下任务。
.打印消息“The first three items in the list are:”,再使用切片来打印列表的前三个元素。
.打印消息“Three items from the middle of the list are:”,再使用切片来打印列表中间的三个元素。
.打印消息“The last three items in the list are:”,再使用切片来打印列表末尾的三个元素。
知识点分析:列表解析与切片
代码:
#4-8&4-9
cube = [i**3 for i in range(1,11)]
for num in cube:
print(num, end = ' ')
print('\nThe first three items in the list are: ', end = '')
#4-10
for num in cube[:3]:
print(num, end = ' ')
print('\nThree items from the middle of the list are: ', end = '')
for num in cube[3:6]:
print(num, end = ' ')
print('\nThe last three items in the list are: ', end = '')
for num in cube[-3:]:
print(num, end = ' ')
4-13 自助餐 :有一家自助式餐馆,只提供五种简单的食品。请想出五种简单的食品,并将其存储在一个元组中。
.餐馆调整了菜单,替换了它提供的其中两种食品。请编写一个这样的代码块:给元组变量赋值,并使用一个for 循环将新元组的每个元素都打印出来。
知识点分析:元组的遍历、元组元素修改(不允许)、元组变量修改(允许)
代码:
foods = ('rice', 'noodles', 'pizza', 'cake', 'bread')
for food in foods:
print(food)
#foods[0] = 'test'
foods = ('rice', 'noodles', 'porridge', 'cake', 'milk')
for food in foods:
print(food)