Python中使用while循环、for循环的使用(四个小案例)

一、使用while循环实现九九乘法表:

 

# 九九乘法表
j = 1; #控制行
while j <= 9: #循环条件
    i = 1;
    while i <= j:
        print(f'{i} * {j} = {i * j}',end = '\t'); #输出结果
        i += 1;
    print("");
    j += 1;

 结果:

Python中使用while循环、for循环的使用(四个小案例)_第1张图片

 

二、使用for循环输出数字0--9,当数字为6的时候,跳出本次循环,执行其他循环,当数字为8的时候,停止循环:

for i in range(1,10):
    if i == 6:
        print('跳出循环:%s'%i);
        continue;
    elif i == 8:
        print('结束循环:%s'%i);
        break;

结果:

Python中使用while循环、for循环的使用(四个小案例)_第2张图片

 

三、使用循环(任意一种)计算0--100之间所有基数的和:

 

#0~100之间的奇数和
# i=1;
# sum = 0;
# while i <= 100:
#     if i % 2 != 0:
#         sum += i;
#     i += 1;
#
# print(sum);

结果:

Python中使用while循环、for循环的使用(四个小案例)_第3张图片

 

四、 使用for循环,输出如下图形:

*        *

*        *        *

*        *        *        *

*        *        *        *        *

#三角形
for i in range(0,6):
    j =1
    while j <= i:
        print("*", end = "\t")
        j+=1
    print("")
    i+=1

 结果:

Python中使用while循环、for循环的使用(四个小案例)_第4张图片

 

 

 

以上便是两种循环的使用方法 !

你可能感兴趣的:(Python,python)