摘要:
#!/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)) ... 阅读全文
摘要:
#!/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... 阅读全文