02Flow control
流程图,布尔值,比较运算符,布尔运算符
**流程图符号:**
判断分支用菱形表示
其他的步骤用矩形表示
开始和最后一步都用圆角矩形表示
Boolean value 布尔值
Unlike integer ,floating-points , string data types have an unlimited number of possible values, Boolean data type only has two values, Ture or False.
比较算法
equal to ==
not equal to !=
<
‘>
<= less than or equal to
>=
布尔运算法
and
or
not
if 逻辑的必要条件
if这个关键词语
条件(即计算为真或假的表达式)
一个冒号
从下一行开始,一个缩进的代码块(称为if子句)
else 逻辑的必要条件
The else keyword
A colon
Starting on the next line, an indented block of code (called the else clause)
elif 逻辑判断必要条件
The elif keyword
A condition (that is, an expression that evaluates to True or False)
A colon
Starting on the next line, an indented block of code (called the elif clause)
While循环语句必要条件
关键词while
条件判断句
冒号
新一行的缩进代码
打破while循环
break
“Truthy” and “Falsey” Values
循环和range()函数
for功能必要条件
关键词for
变量名称
关键词in
A call to the range() method with up to three integers passed to it对range()的召唤,以及最高3个整数放在()里面
冒号
新的一行缩进的子句
range(15)代表0-14
range(12,15)代表12-14
range是3个参数的时候
例如range(0,10,2),前两位代表开始值和结束值,2代表数字间隔range(0,10,2)
0
2
4
6
8
import逻辑——用来引用模块
关键词import
模块的名字
还可以选择更多的模块名,只要它们以逗号分隔
例如
import random(在python中输入random模块);
for i in range(5)
print(random.randint(1,10))
另一种替代的形式是:
from random import*
03chapter 功能
define function定义功能
def 单词(内容)
要定义的参数()
冒号
return 逻辑必要条件
return按钮
return后面的解释句子
让print输入的句子不换行,比如
Print(’hello’)
Print(‘world’)
Hello
world
Print(‘hello’,end=’’)
Print(‘world’) Hello world
让print输入的单词之间的空格被,取代
print('cats', 'dogs', 'mice') | Cat dogs mice |
---|---|
print('cats', 'dogs', 'mice', sep=',') | cats,dogs,mice |
参数和变量功能范围
注意点:在线上的代码不能用任何的本地代码;
本地范围的可以获得线上的代码
本地的代码功能不能用其他的本地的代码功能
你可以命名同样的名字如果他们在不同的功能范围内,比如本地的变量叫spam,另外线上的变量也叫spam
使用函数时,要先定义函数,再调用函数
例如练习:
Write a function named collatz() that has one parameter named number. If number is even, then collatz() should print number // 2 and return this value. If number is odd, then collatz() should print and return 3 * number + 1.
Then write a program that lets the user type in an integer and that keeps calling collatz() on that number until the function returns the value 1. (Amazingly enough, this sequence actually works for any integer—sooner or later, using this sequence, you’ll arrive at 1! Even mathematicians aren’t sure why. Your program is exploring what’s called the Collatz sequence, sometimes called “the simplest impossible math problem.”)
答案
#先定义函数
def collatz(number):
if number % 2 == 0:
print(str(number // 2))
#疑问点:这个str是否为必要加上的?
return number // 2
elif number % 2 == 1:
print(str(number*3 + 1))
return number*3 + 1
#调用函数
print('enter an integer!')
answer = int(input())
while answer != 1:
she = collatz(answer)
当程序遇到问题时
使用try和except函数