码迷,mamicode.com
首页 > 编程语言 > 详细

python基础练习题09

时间:2019-12-31 18:53:17      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:ace   递增   style   ***   练习   pac   五行   控制台   结果   

在控制台连续输出五行*,每一行星号的数量依次递增

row=1
while row<=5:
    col=1
    while col<=row:
        print(*,end=‘‘)
        col+=1
    print()
    row+=1

# 输出结果
# *
# **
# ***
# ****
# *****

02:

row=5
while row>=1:
    col=1
    while col<=row:
        print(*,end=‘‘)
        col+=1
    print(‘‘)
    row-=1

# 输出结果
# *****
# ****
# ***
# **
# *

03:

row=1
while row<=5:
    col=1
    space=1
    while col <=5-row:
        print( ,end=‘‘)
        col+=1
    while space<=row:
        print(*,end=‘‘)
        space+=1
    print(‘‘)
    row+=1
# 输出结果:
#
#     *
#    **
#   ***
#  ****
# ***

04:

row=5
while row>=1:
    col=1
    space=1
    while col<=5-row:
        print(‘‘,end=‘‘)
        col+=1
    while space<=row:
        print(*,end=‘‘)
        space+=1
    print(‘‘)
    row -= 1
# 输出结果:
# *****
#  ****
#   ***
#    **
#     *

python基础练习题09

标签:ace   递增   style   ***   练习   pac   五行   控制台   结果   

原文地址:https://www.cnblogs.com/kelly11/p/12125512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!