python编程:从入门到实践----基础知识>第4章练习
pizza = ["Zunbao","Bishengke","Bipizza"]
for i in pizza:
print(i)
print("I like pepperoni pizza\n")
print("I really love pizza")
animals = ["tiger","rabbit","panda"]
for i in animals:
print(i)
print("A dog would make a great pet\n")
print("Any of these animals would make a great pet!")
for i in range(1,20+1):
print(i)
millions = list(range(1,1000000)) #用list把数字转换成列表格式
for i in millions:
print(i)
millions = list(range(1,1000000))
print(min(millions))
print(max(millions))
print(sum(millions))
numbers= list(range(1,20,2)) #通过range的第三个参数,也就是步长为2,来获取奇数
for i in numbers:
print(i)
numbers= list(range(3,30,3))
for i in numbers:
print(i)
squares=[]
for value in range(1,10+1):
square = value**3
squares.append(square)
print(squares)
square=[value**3 for value in range(1,10+1)]
print(square)
4-10 切片:选择你在本章编写的一个程序,在末尾添加几行代码,以完成如下任务。
a. 打印消息“The first three items in the lis tare:”,再使用切片来打印列表的前三个元素。
b. 打印消息“Three items from the middle of the list are:”,再使用切片来打印列表中间的三个元素
c. 打印消息“The last three items in the list are:”,再使用切片来打印列表末尾的三个元素
my_foods = ['pizza', 'falafel', 'carrot cake','fruit','coffee','rice','meat']
print("The first three items in the list are:")
print(my_foods[:3])
print("\nThree items from the middle of the list are:")
print(my_foods[2:5])
print("\nThe last three items in the list are:")
print(my_foods[4:]) #输出结果:
The first three items in the list are:
['pizza', 'falafel', 'carrot cake'] Three items from the middle of the list are:
['carrot cake', 'fruit', 'coffee'] The last three items in the list are:
['coffee', 'rice', 'meat']
pizza = ["Zunbao","Bishengke","Bipizza"]
friend_pizzas = pizza[:]
pizza.append("Niu")
friend_pizzas.append("Liang") print("My favorite pizzasare:")
for i in pizza:
print(i) print("\nMy friend's favorite pizzasare:")
for j in friend_pizzas:
print(j)
#输出结果:
My favorite pizzasare:
Zunbao
Bishengke
Bipizza
Niu My friend's favorite pizzasare:
Zunbao
Bishengke
Bipizza
Liang
my_foods=['pizza','falafel','carrot','cake']
friend_foods = my_foods[:]
my_foods.append('cannoli')
friend_foods.append('ice cream')
print("My favorite foods are:")
for my_food in my_foods:
print(my_food)
print("\nMy friend's favorite foods are:")
for friend_food in friend_foods:
print(friend_food) #输出结果:
My favorite foods are:
pizza
falafel
carrot
cake
cannoli My friend's favorite foods are:
pizza
falafel
carrot
cake
ice cream
foods =('rice','meat','seafood','vegetable','fruit')
print("The original foods are:")
for food in foods:
print(food)
#foods[0]='coffee'
#print(foods[0])
foods=('coffee','meat','seafood','vegetable','tea')
print("\nThe modify foods are:")
for food in foods:
print(food)
#输出结果:
The original foods are:
rice
meat
seafood
vegetable
fruit
The modify foods are:
coffee
meat
seafood
vegetable
tea
python编程:从入门到实践----基础知识>第4章练习的更多相关文章
- 《Python编程从入门到实践》_第六章_字典
一个简单的字典 #用户信息 user = {','city':'shanghai'} print(user['name']) print(user['age']) print(user['city'] ...
- 《Python编程从入门到实践》_第五章_if语句
条件测试 每条if语句的核心都是一个值为Ture或False的表达式,这种表达式被称为为条件测试.Python根据条件测试的值为Ture还是False来决定是否执行if语句中的代码.如果条件测试的值为 ...
- 《Python编程从入门到实践》_第四章_操作列表
for循环遍历整个列表 pizzas = ['pizzahut','dicos','KFC'] for pizza in pizzas: print ("I like "+ piz ...
- 《Python编程从入门到实践》_第七章_用户输入和whlie循环
函数input()的工作原理 函数input()让程序暂停运行,等待用户输入一些文本.获取用户输入后,python将其存储在一个变量中,以方便你使用. #输入用户名 username = input( ...
- 《Python编程从入门到实践》_第三章_列表简介
什么是列表呢? 官方说明就是由一些列按特点顺序排列的元素组成.其实可以看出很多个字符串的有序组合吧,里面的内容可以随时的删除,增加,修改. 下面这个就是一个列表,python打印列表的时候会将中括号和 ...
- 《python编程从入门到实践》2.3字符串
书籍<python编程从入门到实践> 2.3字符串 知识模块 print()函数,函数名称突出为蓝色,输出括号内的变量或者字符创. 变量名的命名:尽量小写字母加下划线并且具有良好的描述性, ...
- 《python编程从入门到实践》读书实践笔记(一)
本文是<python编程从入门到实践>读书实践笔记1~10章的内容,主要包含安装.基础类型.函数.类.文件读写及异常的内容. 1 起步 1.1 搭建环境 1.1.1 Python 版本选择 ...
- Python编程从入门到实践笔记——异常和存储数据
Python编程从入门到实践笔记——异常和存储数据 #coding=gbk #Python编程从入门到实践笔记——异常和存储数据 #10.3异常 #Python使用被称为异常的特殊对象来管理程序执行期 ...
- Python编程从入门到实践笔记——文件
Python编程从入门到实践笔记——文件 #coding=gbk #Python编程从入门到实践笔记——文件 #10.1从文件中读取数据 #1.读取整个文件 file_name = 'pi_digit ...
随机推荐
- 083-PHP的foreach循环
<?php $arr = array(1, 2, 3, 4); foreach ($arr as &$value) { $value = $value * 2; } print_r($a ...
- 【OJ2216】小奇的数列
题目大意 : 给定一个长度为 \(n\) 的数列,以及 \(m\) 次询问,每次给出三个数 \(l\),\(r\) 和 \(P\),询问 \((\sum_{i=l_1}^{r_1}a_i)\;mod\ ...
- HZNU-ACM寒假集训Day11小结 贪心
1.刘汝佳紫书区间问题三大情况 1.选择不相交区间 贪心策略:一定要选择第一个区间 2.区间选点问题 贪心策略:取最后一个点 3.区间覆盖问题: n个闭区间,选择尽量少的区间覆盖一条指定线段[s,t] ...
- LeetCode#3 - 无重复字符的最长字串(滑动窗口)
题目: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度. 示例: abcabcbb 输出的结果应该是3,最长的无重复的字串是'abc' 果然无论做什么都要静下心来啊!昨晚上卡了一个多小 ...
- CCCC L3-013. 非常弹的球
题意: 刚上高一的森森为了学好物理,买了一个“非常弹”的球.虽然说是非常弹的球,其实也就是一般的弹力球而已.森森玩了一会儿弹力球后突然想到,假如他在地上用力弹球,球最远能弹到多远去呢?他不太会,你能帮 ...
- BZOJ 2226 [Spoj 5971] LCMSum
题解:枚举gcd,算每个gcd对答案的贡献,贡献用到欧拉函数的一个结论 最后用nlogn预处理一下,O(1)出答案 把long long 打成int 竟然没看出来QWQ #include<ios ...
- 老出BUG怎么办?游戏服务器常见问题解决方法分享
在游戏开发中,我们经常会遇到一些技术难题,而其引发的bug则会影响整个游戏的品质.女性向手游<食物语>就曾遇到过一些开发上的难题,腾讯游戏学院专家团Wade.Zc.Jovi等专家为其提供了 ...
- 一天一个设计模式——Abstract Factory抽象工厂模式
一.模式说明 前面学习了工厂方法(Factory Method)模式.在工厂方法模式中,在工厂方法模式中,父类决定如何生成实例,但并不决定所要生成的具体类,具体的处理交由子类来处理.这里学习的抽象工厂 ...
- promise 核心 几个小问题
1.如何改变pending的壮体 抛出异常.pending变为rejected // throw new Error('fail') 内部抛出异常也这样 reason为抛出的error resol ...
- POJ 1887:Testing the CATCHER 求递减序列的最大值
Testing the CATCHER Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 16131 Accepted: 5 ...