3.2Python while循环实例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.2Python while循环实例相关的知识,希望对你有一定的参考价值。

实例1:输出100以内的奇数

# -*-coding:utf-8 -*-
__date__ = ‘2018/2/5 17:10‘
__author__ = ‘xiaojiaxin‘
__file_name__ = ‘while1‘
n=1
while n <=100:
    print(n)
    n+=2

//打印奇数

实例2:while……else……语句
Python中的特殊结构:
While 条件:
……
else:
……
Else只有在循环正常结束的时候才能执行,break的时候不能执行,其余时候都能执行。

m=1
while m<10:
    print(m)
    m+=1
else:
    print("finish!")

实例三:结尾自定义
python默认以空格结尾

print("hello world!",end="____")     //\n   \r    \t
print("hello world!",end="____")
print("hello world!",end="____")

hello world!hello world!hello world!____

print()
空行

实例4:输出九九乘法表

# -*-coding:utf-8 -*-
__date__ = ‘2018/2/5 17:33‘
__author__ = ‘xiaojiaxin‘
__file_name__ = ‘九九乘法表‘

i=1
j=1
while i <10:
    j=1
    while j<=i:
        print("%d * %d=%d"%(i,j,(i*j)),end="      ")
        j+=1
    print( )
    i+=1

以上是关于3.2Python while循环实例的主要内容,如果未能解决你的问题,请参考以下文章

while循环基本实例

python中的while循环与for循环怎么样那个比较好用?

python代码

Python while 循环使用实例

Python中的if,while,for

Python 之 While 循环语句(实例)