yayc_zcyd 发表于 2021-4-9 21:22:35

turtle绘制奥运五环~

import turtle as t
def main():
    t.width(8)

    t.color("blue")
    t.circle(50)

    t.penup()
    t.goto(120, 0)
    t.pendown()

    t.color("black")
    t.circle(50)

    t.penup()
    t.goto(240, 0)
    t.pendown()

    t.color("red")
    t.circle(50)

    t.penup()
    t.goto(60, -50)
    t.pendown()

    t.color("yellow")
    t.circle(50)

    t.penup()
    t.goto(180, -50)
    t.pendown()

    t.color("green")
    t.circle(50)
    t.done()

if __name__ == "__main__":
    main()


xxm8023 发表于 2021-4-9 22:55:02

这下面两个环对的也不齐啊{:10_257:}

yayc_zcyd 发表于 2021-4-10 08:33:47

xxm8023 发表于 2021-4-9 22:55
这下面两个环对的也不齐啊

是齐的,你看那个代码

小伤口 发表于 2021-4-10 12:29:09

66666666呀

yayc_zcyd 发表于 2021-4-10 15:30:54

小伤口 发表于 2021-4-10 12:29
66666666呀

这个没啥技术含量吧...

帅气小哥 发表于 2021-4-10 16:03:25

大佬 来报道了!!
页: [1]
查看完整版本: turtle绘制奥运五环~