鱼C论坛

 找回密码
 立即注册
查看: 2100|回复: 1

[学习笔记] 用python海龟库画出5*5方格,涂出一个叉

[复制链接]
发表于 2020-10-7 16:07:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
自己做的,多指教。。。
from turtle import*
t = Turtle()
t.shape("turtle")
t.color("black")
t.speed(500)
c = 0
b = 0

while c < 5:
    c = c + 1
    a = 1
    t.right(90)
    t.forward(20)
    t.left(90)
    t.down()
    if a < 6:
        for i in range(5):
            if c == 1 and a == 1 or c == 1 and a == 5:
                t.begin_fill()
                t.fillcolor('red')
                for i in range(4):
                    t.forward(20)
                    t.left(90)
                t.end_fill()
            
            for i in range(4):
                t.forward(20)
                t.left(90)
            t.forward(20)
            a = a + 1


    t.up()
    t.right(180)
    t.forward(100)
    t.left(90)
    t.forward(20)
    t.left(90)
    t.down()

    a = 1
    c = c + 1
    for i in range(5):
        if c == 2 and a == 2 or c == 2 and a == 4:
            t.begin_fill()
            t.fillcolor('red')
            for i in range(4):
                t.forward(20)
                t.left(90)
            t.end_fill()
            
        for i in range(4):
            t.forward(20)
            t.left(90)
        t.forward(20)
        a = a + 1
    t.up()
    t.right(180)
    t.forward(100)
    t.left(90)
    t.forward(20)
    t.left(90)
    t.down()
    
    a = 1
    c = c + 1
    for i in range(5):
        if c == 3 and a == 3:
            t.begin_fill()
            t.fillcolor('red')
            for i in range(4):
                t.forward(20)
                t.left(90)
            t.end_fill()
            
        for i in range(4):
            t.forward(20)
            t.left(90)
        t.forward(20)
        a = a + 1
    t.up()
    t.right(180)
    t.forward(100)
    t.left(90)
    t.forward(20)
    t.left(90)
    t.down()
    a = 1
    c = c + 1
    for i in range(5):
        if c == 4 and a == 2 or c == 4 and a == 4:
            t.begin_fill()
            t.fillcolor('red')
            for i in range(4):
                t.forward(20)
                t.left(90)
            t.end_fill()
            
        for i in range(4):
            t.forward(20)
            t.left(90)
        t.forward(20)
        a = a + 1
    t.up()
    t.right(180)
    t.forward(100)
    t.left(90)
    t.forward(20)
    t.left(90)
    t.down()
    a = 1
    c = c + 1
    for i in range(5):
        if c == 5 and a == 1 or c == 5 and a == 5:
            t.begin_fill()
            t.fillcolor('red')
            for i in range(4):
                t.forward(20)
                t.left(90)
            t.end_fill()
            
        for i in range(4):
            t.forward(20)
            t.left(90)
        t.forward(20)
        a = a + 1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-10-7 16:07:52 | 显示全部楼层
太多重复语句了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-11 00:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表