4-10 切片 :选择你在本章编写的一个程序,在末尾添加几行代码,以完成如下任务。
打印消息“Thefirst threeitems in thelistare:”,再使用切片来打印列表的前三个元素。
打印消息“Threeitems fromthe middle ofthelistare:”,再使用切片来打印列表中间的三个元素。
打印消息“Thelast threeitems in thelistare:”,再使用切片来打印列表末尾的三个元素。
4-11 你你的的比比萨萨和和我我的的比比萨萨 :在你为完成练习4-1而编写的程序中,创建比萨列表的副本,并将其存储到变量friend_pizzas 中,再完成如下任务。
在原来的比萨列表中添加一种比萨。
在列表friend_pizzas 中添加另一种比萨。
核实你有两个不同的列表。为此,打印消息“My favorite pizzasare:”,再使用一个for 循环来打印第一个列表;打印消息“My friend‘s favorite pizzasare:”,再使用一
个for 循环来打印第二个列表。核实新增的比萨被添加到了正确的列表中。
4-12 使使用用多多个个循循环环 :在本节中,为节省篇幅,程序foods.py的每个版本都没有使用for 循环来打印列表。请选择一个版本的foods.py,在其中编写两个for 循环,将各
个食品列表都打印出来。
代码:
#!usr/bin/python # _*_ coding:utf-8 _*_ players = ["老王","老李","老周","老杨","老封","老邢"] print("The first three items in the list are:") for human in players[0:3]: print(human) print("Three items from the middle of the list are:") a = int(len(players)/2) for people in players[a-1:a+1]: print(people) print("The last three items in the list are:") for player in players[-3:]: print(player)
my_pizzas = ["beefpizza","chickenpizza","porkpizza","fruitpizza","grilledpizza"] #通过切片复制列表 friend_pizzas = my_pizzas[:] my_pizzas.append("dogpizza") friend_pizzas.append("shitpizza") ##for pizza in my_pizzas: ## print(pizza) ##for pizzas in friend_pizzas: ## print(pizzas) print("my favorite pizza is:") for pizza in my_pizzas: print(pizza) print("my friend favorite pizza is :") for pizzas in friend_pizzas: print(pizzas)
原文地址:https://www.cnblogs.com/2tomcat/p/12178241.html
时间: 2024-11-10 15:12:25