概述
第四章 操作列表
4-2 动物:想出至少三种有共同特征的动物,将这些动物的名称存储在一个列表中,再使用for循环将每种动物的名称都打印出来。
- 修改这个程序,使其对每种动物都打印一个句子,如“A dog would make a great pet”
- 在程序末尾添加一行代码,指出这些动物的共同之处,如打印诸如“Any of these animals would make a great pet”这样的句子。
animals = ["dog", "cat", "pig"]
for animal in animals:
print("A " + animal + " would make a great pet")
print("Any of these animals would make a great pet")
4-5 计算1~1000000的总和:创建一个列表,其中包含数字1~1000000,再使用min()和max()核实该列表确实是从1开始,到1000000结束的。另外,对这个列表调用函数sum(),看看Python将一百万个数字相加需要多长时间。
numbers = range(1, 1000001)
print(min(numbers))
print(max(numbers))
print(sum(numbers))
4-7 3的倍数:创建一个列表,其中包含3~30内能被3整除的数字,再使用一个for循环将这个列表中的数字打印出来。
numbers = [values for values in range(3, 31) if values % 3 == 0]
for value in numbers:
print(value)
4-9 立方解析:使用立方解析生成一个列表,其中包含前10个整数的立方。
cubes = [value**3 for value in range(1,11)]
print(cubes)
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:”,再使用切片打印列表末尾的三个元素。
numbers = [values for values in range(3, 31) if values % 3 == 0]
print("The first three items in the list are:")
print(numbers[0:3])
print("Three items from the middle of the list are:")
print(numbers[3:6])
print("The last three items in the list are:")
print(numbers[-3:])
4-13 自助餐:有一家自助式餐馆,只提供五种简单的食品。请想出五种简单的食品,并将其存储在一个元组中。
- 使用一个for循环将餐馆提供的五种食品都打印出来。
- 尝试修改其中的一个元素,核实Python确实会拒绝你这样做。
- 餐馆调整了菜单,替换了它提供的两种食品。请编写一个这样的代码块:给元组变量赋值,并使用一个for循环将新元组的每个元素都打印出来。
foods = ("large meatball", "stir-fried duck", "Goubuli stuffed bun", "claypot rice", "popcorn chicken")
for food in foods:
print(food)
foods[1] = "beef"
foods = ("Boiled Chicken Slices", "stir-fried duck", "Millet Congee", "claypot rice", "popcorn chicken")
for food in foods:
print(food)
最后
以上就是贪玩冰棍为你收集整理的2018.3.14 Python作业的全部内容,希望文章能够帮你解决2018.3.14 Python作业所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复