调用海龟画图模块--画五角星

以前代码,备忘
调用海龟画图模块--画五角星_第1张图片

import turtle   # 调用海龟画图模块

wn = turtle.Screen()  # 设置wn变量,取画板民屏幕
g = turtle.Turtle()
g.shape('turtle')  # 调海龟画笔
g.pensize(8)  # 设画笔粗
g.color('red')  # 设颜色
g.fillcolor("red")
g.setpos(-200,100) # 设位置
g.clear()  # 清除画笔
g.begin_fill()
for i in range(5):  #重复5次,循环
    g.forward(500 )  # 向前500
    g.right(180/5*4) # 转角180/5*4
g.end_fill()

wn.exitonclick() # 点击屏幕退出

你可能感兴趣的:(助孩成长,python,游戏)