美文网首页
无标题文章

无标题文章

作者: 风雨无阻_sir | 来源:发表于2018-06-10 13:40 被阅读0次

## 简单图形打印

'''

******

'''

print("* "*5)

##  利用for 循环更改上面的案例

for i in range(0,4):

    print("* "*5)

##  利用for 循环更改上面的案例

for i in range(0,4):

    # 利用for 循环打印一行星

    # print("******")

    # 可以通过end参数  不换行

    for j in range(5):

        print("* ",end='')

    print()

##  利用for 循环更改上面的案例

for i in range(0,4):

    print("* "*5)

##  利用for 循环更改上面的案例

for i in range(0,4):

    if i==0 or i==3:

        print("* "*5)

    if i==1 or i==2:

        print("*      *")

##  利用for 循环更改上面的案例

for i in range(0,4):

    if i==0 or i==3:

        print("* "*5)

    if i==1 or i==2:

        for j in range(5):

            if j==0 or j==4:

                print("* ",end="")

            else:

                print("  ",end="")   

        print()

相关文章

  • 无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章 无标题文章无标题文章无标题文章无...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • fasfsdfdf

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章 无标题文章 无标题文章无标题文章 无标题文章 无标题文章

网友评论

      本文标题:无标题文章

      本文链接:https://www.haomeiwen.com/subject/upvfeftx.html