Python基础综合练习

Posted 125叶胜轩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础综合练习相关的知识,希望对你有一定的参考价值。

from turtle import *


def goto1(x, y):
    up()
    goto(x, y)
    down()


def draw(r):
    begin_fill()
    for i in range(5):
        forward(r)
        right(144)
    end_fill()


setup(700, 500, 0 ,0)
bgcolor(\'red\')
color(\'yellow\')
speed(40)
fillcolor(\'yellow\')
hideturtle()

goto1(-300, 150)
draw(100)
goto1(-190, 220)
draw(45)
goto1(-140, 150)
draw(45)
goto1(-140, 90)
draw(45)
goto1(-190, 40)
draw(45)
done()

以上是关于Python基础综合练习的主要内容,如果未能解决你的问题,请参考以下文章

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习