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

【HW】4-1到4-13的选题,代码

2018-03-18 16:12 218 查看
4-2 动物 :想出至少三种有共同特征的动物,将这些动物的名称存储在一个列表中,再使用for 循环将每种动物的名称都打印出来。
    修改这个程序,使其针对每种动物都打印一个句子,如“A dog would make a great pet”。
    在程序末尾添加一行代码,指出这些动物的共同之处,如打印诸如“Any of these animals would make a great pet!”这样的句子。
animals = ['rabbit','cat','dog']
for animal in animals :
print('A ' + animal + ' is a great pet.')
print('Any of these animals would make a great pet!')


4-8 立方 :将同一个数字乘三次称为立方。例如,在Python中,2的立方用2**3 表示。请创建一个列表,其中包含前10个整数(即1~10)的立方,再使用一个for 循环将这些立方数都打印出来。
4-9 立方解析 :使用列表解析生成一个列表,其中包含前10个整数的立方。
#4-8
numbers = []
for i in range(1,10):
numbers.append(i**3)
print(numbers[-1])

#4-9
numbers2 = [i**3 for i in range(1,10)]
print(numbers2)

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:”,再使用切片来打印列表末尾的三个元素。
# use the 4-9's numbers
numbers = [i**3 for i in range(1,10)]
print(numbers)
print("The first three items in the list are:")
print(numbers[: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:])
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  HW