Python編程-while循環練習(花式打印*號)

打印*號格式1 1.程序內容爲: a=0 #定義行計數器 while a < 5: b=0 #定義列計數器 while b < a: print('*',end='') #end=''是打在一行的意思 b += 1 print('*') a += 1 2.執行該程序: - 格式2: 1.程序內容爲: i=5 while i >=
相關文章
相關標籤/搜索