编程语言
首页 > 编程语言> > 用Python画一个时钟——turtle库基础

用Python画一个时钟——turtle库基础

作者:互联网

 这个时钟主要用了forward()直走,还有right()向右旋转

代码如下:

import turtle
turtle.bgcolor('yellow')
a = turtle.Turtle()
a.shape('turtle')
a.color('green')
a.penup()
for i in range(12):
    a.forward(90)
    a.pendown()
    a.forward(30)
    a.penup()
    a.forward(20)
    a.stamp()
    a.backward(140)
    a.right(30)
a.pendown()
a.backward(60)
a.forward(60)
a.left(90)
a.forward(80)

 

标签:turtle,right,penup,Python,60,forward,90,时钟
来源: https://blog.csdn.net/we123aaa4567/article/details/121591171