Python学习02——分支语句和循环语句

2022-07-17  本文已影响0人  TokyoZ

[TOC]

1. 对象的布尔值

python中万物皆为对象,每个对象都有一个布尔值,通过bool()函数获取,其中,以下对象的布尔值为False

print(bool(False))  # 布尔型
print(bool(0))  # 数值为0
print(bool(0.0))  # 数值为0.0
print(bool(''))  # 空字符串
print(bool(""))  # 空字符串
print(bool([]))  # 空列表
print(bool(list()))  # 空列表
print(bool(None))  # None型
print(bool(()))  # 空元组
print(bool(tuple()))  # 空元组
print(bool({}))  # 空字典
print(bool(dict()))  # 空字典
print(bool(set()))  # 空集合

其余的对象,bool()函数返回的全部为True

2. 分支语句

2.1 多分支

score = 80

if score > 80:
    print("优秀")
elif score > 60:
    print("合格")
else:
    print("不合格")

2.2 嵌套if

score = 80
number = 5

if number % 2 == 0:
    if score > 90:
        print("优秀")
    else:
        print("不优秀")
else:
    if score > 80:
        print("优秀")
    else:
        print("继续努力")

2.3 分支表达式

分支表达式的语法为:

x if 判断条件 else y

其中,如果判断条件为True,则处理x,否则处理y

x = 99
print("我是偶数" if x % 2 == 0 else "我是奇数")  #我是奇数

pass语句

什么都不做,占位符。

score = 80
number = 6

if number % 2 == 0:
    pass
else:
    if score > 80:
        print("优秀")
    else:
        print("继续努力")
        
# 什么都不输出

3. 循环语句

3.1 range语句

创建一个顺序的列表。

nums = range(10)
print(nums)  # range(0, 10)  打印的是range的对象名称

print(list(nums))  # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 查看range中的整数
3.1.1 range(end)
r1 = range(10)  # 从0开始,步长为1,到10结束,不包括10
print(list(r1))  # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
3.1.2 range(start, end)
r2 = range(1, 10)   # 从1开始,步长为1,到10结束,不包括10
print(list(r2))  # [1, 2, 3, 4, 5, 6, 7, 8, 9]
3.1.3 range(start, end, step)
r3 = range(1, 10, 2)  # 从1开始,步长为2,到10结束,不包括10
print(list(r3))  # [1, 3, 5, 7, 9]

3.2 while循环

# 求1~100之间的偶数和
sum = 0
index = 0
while index <= 100:
    if index % 2 == 0:
        sum += index
    index += 1
print(sum)  # 2550

3.3 forIn循环

# 求1~100之间的偶数和
sum = 0
index = 0
for x in range(1, 101):
    if x % 2 == 0:
        sum += x
print(sum)  # 2550

3.4 循环控制语句

3.4.1 break

遇见break直接结束循环。

total = 10
index = 0
while index < total:
    sum = index + total
    if sum == 15:
        break
    else:
        print("index: ", index)
    index += 1
print("final: ", index)

输出:

index:  0
index:  1
index:  2
index:  3
index:  4
final:  5
3.4.2 continue

跳过这次循环,执行下一次循环条件。

total = 10
index = 0
while index < total:
    index += 1
    if index == 5:
        continue
    else:
        print("index: ", index)
print("final: ", index)

输出:

index:  1
index:  2
index:  3
index:  4
index:  6
index:  7
index:  8
index:  9
index:  10
final:  10

3.5 else语句

3.5.1 else搭配if

不满足if条件时执行:

a = 10
if a % 2 == 0:
    print("我是偶数")  # 打印 我是偶数
else:
    print("我是奇数")
3.5.2 else搭配forInwhile循环

没有遇到break语句时执行。

遇到break语句的情况:

total = 10
index = 0
while index < total:
    index += 1
    if index == 5:
        break
    else:
        print("index: ", index)
else:
    print("else: ", index)

输出:

index:  1
index:  2
index:  3
index:  4

没有遇到break语句的情况:

total = 10
index = 0
while index < total:
    index += 1
    if index == 5:
        pass
    else:
        print("index: ", index)
else:
    print("else: ", index)

输出:

index:  1
index:  2
index:  3
index:  4
index:  6
index:  7
index:  8
index:  9
index:  10
else:  10

3.6 嵌套循环

输出 9*9 乘法表:

# 输出9 * 9 乘法表
for i in range(1, 10):
    s = ""
    for j in range(1, 10):
        s += str(j) + " * " + str(i) + " = " + str(i * j) + "  "
        if i == j:
            print(s)

输出:

1 * 1 = 1  
1 * 2 = 2  2 * 2 = 4  
1 * 3 = 3  2 * 3 = 6  3 * 3 = 9  
1 * 4 = 4  2 * 4 = 8  3 * 4 = 12  4 * 4 = 16  
1 * 5 = 5  2 * 5 = 10  3 * 5 = 15  4 * 5 = 20  5 * 5 = 25  
1 * 6 = 6  2 * 6 = 12  3 * 6 = 18  4 * 6 = 24  5 * 6 = 30  6 * 6 = 36  
1 * 7 = 7  2 * 7 = 14  3 * 7 = 21  4 * 7 = 28  5 * 7 = 35  6 * 7 = 42  7 * 7 = 49  
1 * 8 = 8  2 * 8 = 16  3 * 8 = 24  4 * 8 = 32  5 * 8 = 40  6 * 8 = 48  7 * 8 = 56  8 * 8 = 64  
1 * 9 = 9  2 * 9 = 18  3 * 9 = 27  4 * 9 = 36  5 * 9 = 45  6 * 9 = 54  7 * 9 = 63  8 * 9 = 72  9 * 9 = 81  

嵌套循环中遇到break或者continue只作用于本层循环。

上一篇 下一篇

猜你喜欢

热点阅读