python基础练习题09
Posted kelly-凯莉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础练习题09相关的知识,希望对你有一定的参考价值。
在控制台连续输出五行*,每一行星号的数量依次递增
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的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段