登录
首页 >  文章 >  python教程

Python While 循环示例

来源:dev.to

时间:2025-01-08 15:09:07 116浏览 收藏

偷偷努力,悄无声息地变强,然后惊艳所有人!哈哈,小伙伴们又来学习啦~今天我将给大家介绍《Python While 循环示例》,这篇文章主要会讲到等等知识点,不知道大家对其都有多少了解,下面我们就一起来看一吧!当然,非常希望大家能多多评论,给出合理的建议,我们一起学习,一起进步!

image description

#Tasks
# 2 4   6   8   10
#3  6   9   12  15
#1  3   5   7   9   2   4   6   8   10
#10 8   6   4   2
#9  7   5   3   1
#1  2   3   4   5   6   7   8   9   10
#1  RED BLUE RED 5 REDBLUE 7 RED BLUE RED


#Task 1
i=1
while i <= 10:
    if i%2 ==0:
        print(i, end =' ')
    i=i+1
print('')


#Task 2

i=1
while i <= 15:
    if i%3 ==0:
        print(i, end =' ')
    i=i+1
print('')

#Task 3 using 2 loops

i=1
while i<= 10:
    if i%2 != 0:
        print(i, end= ' ')
    i=i+1
i=1
while i<=10:
    if i%2 == 0:
        print(i, end =' ')
    i=i+1
print('')

#Task 3 using 1 loop

i=1
output = ''
while i<= 10:
    if i%2 != 0:
        print(i, end= ' ')
    elif i%2 == 0:
        output = output + str(i) + ' '
    i=i+1
else:
    print(output)

#Task 4

i=10
while i>=1:
    if i%2 == 0:
        print(i, end =' ')
    i=i-1
print('')

#Task 5

i=10
while i>=1:
    if i%2 != 0:
        print(i, end =' ')
    i=i-1
print('')

#Task 6 

i = 1
while i<=10:
    print(i, end =' ')
    i=i+1
print('')

#Task 7

i = 1
while i<=10:
    if i%2 == 0 and i%3 == 0:
        print('REDBLUE',end =' ')
    elif i%3 == 0:
        print('BLUE',end= ' ')
    elif i%2 == 0:
        print('RED',end =' ')
    else:
        print(i,end =' ')
    i=i+1
print('')

终于介绍完啦!小伙伴们,这篇关于《Python While 循环示例》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布文章相关知识,快来关注吧!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>