摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*-#画雪 from turtle import * from random import * def ground(): hideturtle() speed(100) for i in range(400): pensize(randint(5,10)) ... 阅读全文
posted @ 2017-11-17 17:50 hayden__wang 阅读(541) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*-#时钟 from turtle import * from datetime import * def Skip(step): penup() forward(step) pendown() def mkHand(name, length): #注册Turtle... 阅读全文
posted @ 2017-11-17 14:43 hayden__wang 阅读(699) 评论(0) 推荐(0) 编辑