Python基础综合练习

Posted 119林江绅

tags:

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

import turtle

turtle.setup(600, 400, 0, 00)
turtle.color(\'yellow\')
turtle.bgcolor(\'red\')
turtle.fillcolor(\'yellow\')
turtle.speed(6)

def mygoto(x, y):
    turtle.up()
    turtle.goto(x, y)
    turtle.down()

def drawwu(x):
    turtle.begin_fill()
    for i in range(5):
        turtle.forward(x)
        turtle.right(144)
    turtle.end_fill()

mygoto(-220, 75)
drawwu(100)

for i in range(4):
    x = 1
    if i in [0, 3]:
        x = 0
    mygoto(-100 + x * 50, 150 - i * 40)
    turtle.left(15 - i * 15)
    drawwu(50)
turtle.done()

 

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

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习

Python基础综合练习