第五章 循环与判断
5.1 逻辑控制与循环
逻辑判断一一True & False
布尔类型(Boolean)的数据只有两种,True 和 False (需要注意的是首字母大写)。人类以真伪来判断事实,而在计算机世界中真伪对应着的则是1和0。
1 > 2 # False
1 < 2 <3 # True
42 != '42' # True
'Name' == 'name' # False
'M' in 'Magic' # True
number = 12
number is 12 # True
- 这里“==”是等于,一个等号是赋值,不等于用“!=”这个表示
- 字符串和数字不能比较
- 字符串比较区分大小写
- True是1,False是0,所以True>False
成员运算符与身份运算符
- in, not in a in b, a是否在b的里面(归属关系)
- 列表 album = [],像这样就是创建了一个列表,append()可以添加元素到集合的最后
字符串、浮点、整数、布尔类型、变量甚至是另一个列表都可以储存在列表中
album = []
album = ['Black Star', 'David Bowie', 25, True]
album.append('new song')
print(album[0], album[-1])
print('Black Star' in album)
- is, is not a is b, a是b吗(身份鉴别)
the_Eddie = 'Eddie'
name = 'Eddie'
the_Eddie == name #True
the_Eddie is name #True
在 Python 中任何对象都可判断其布尔值,除了 0、None 和所有空的序列与集合(列表,字典,集合)布尔值为 False 之外,其它的都为 True
bool(0) #False
bool([]) #False
bool('') #False
bool(False) #False
bool(None) #False
布尔运算符
and、or 用于布尔值的之间的运算
1 < 3 and 2 < 5 #True
1 < 3 and 2 > 5 #False
1 < 3 or 2 > 5 #True
1 > 3 or 2 > 5 #False
5.2 条件控制
if...else
if 条件为True时冒号,做……,条件为False时,做……
- 例子,做个登录的函数,输入密码为12345时显示密码正确,除此以外显示密码错误并提示重新输入密码
def account_login():
password = input('Password:') # input输入的是字符串
if password == '12345': # 输入的密码等于12345
print('Login success!')
else:
print('Wrong password or invalid input!')
account_login() # 重新输入密码
account_login()
elif
多条件判断同样很简单,只需在 if 和else 之间增加上 elif,用法和 if 是一致的。而且条件的判断也是依次进行的,首先看条件是否成立,如果成立那么就运行下面的代码,如果不成立就接着顺次地看下面的条件是否成立,如果都不成立则运行 else 对应的语句。
上面的例子加个重置密码的功能
password_list = ['*#*#', '12345']
def account_login():
password = input('Password:')
password_correct = password == password_list[-1]
password_reset = password == password_list[0]
if password_correct:
print('Login success!')
elif password_reset:
new_password = input('Enter a new password')
password_list.append(new_password)
print('Your password has changed successfully!')
account_login()
else:
print('Wrong password or invalid input!')
account_login()
account_login()
5.3 循环
for 循环
for every_letter in 'Hello world':
print(every_letter)
把 for 循环所做的事情概括成一句话就是:于...其中的每一个元素,做...事情。
-
例子1 试着用for循环打印
1 + 1 = 2
2 + 1 = 3
.
.
10 + 1 = 11
(这里会用到一个range(a,b)括号中填上数字,就可以得到一个具有连续整数的序列)
for num in range(1, 11):
print(str(num) + ' + 1' + ' = ' + str(num + 1))
print('{} + 1 = {}'.format(num, num+1)) #也可以这样写
- 例子2 把 for 和 if 结合起来使用。实现这样一个程序:歌曲列表中有三首歌“Holy Diver, Thunderstruck, Rebel Rebel”,当播放到每首时,分别显示对应的歌手名字“Dio, AC/DC, David Bowie”。
song_list = ['Holy Diver', 'Thunderstruck', 'Rebel Rebel']
for song in song_list:
if song == 'Holy Diver':
print(song, ' - Dio')
elif song == 'Thunderstruck':
print(song, ' - AC/DC')
elif song == 'Rebel Rebel':
print(song, ' - David Bowie')
!!!这里的print(song, ' - David Bowie')中的逗号解释
'+'号是进行拼接,参与'+'的参数类型必须是同类型的数据
',' 号是将变量分隔开,可以是不同类型的数据
比如:
print 'abc'+'123' # result: abc123
print 'abc', '123' # result: abc 123
嵌套循环
- 打印个乘法口诀表
for i in range(1, 10):
for j in range(1, 10):
print('{} × {} = {}'.format(i, j, i * j))
变量 i 每取一次值,内层循环就要依次将 1~9 中存储在变量 j 中
While 循环
只要…条件成立,就一直做…。
while 1 < 3:
print('1 is smaller than 3')
这个循环会一直循环下去,要及时停止,像这种循环我们叫死循环
- 如何控制while循环,其中一种方式就是:在循环过程中制造某种可以使循环停下来的条件
count = 0
while True:
print('Repeat this line !')
count = count + 1
if count > 5:
break
- 如何控制while循环,另外一种方法是:改变使循环成立的条件
count = 0
while count < 5:
print('Repeat this line !')
count = count + 1
- 在登录函数基础上,改成输入密码错误3次就不许再输入了
def account_login():
tries = 3
while tries > 0:
password = input('Password:')
password_correct = password == password_list[-1]
password_reset = password == password_list[0]
if password_correct:
print('Login success!')
break
elif password_reset:
new_password = input('New Password:')
password_list.append(new_password)
print('Your password has changed successfully')
account_login()
break
else:
print('Wrong password or invalid input!')
tries = tries - 1
print(tries, 'times left')
else:
print('Your account has been suspended')
account_login()
这里用了个while…else,
意思是当 while/for 循环正常执行完的情况下,执行 else 输出;
如果当 while/for 循环中执行了跳出循环的语句,比如 break,将不执行 else 代码块的内容