• 大小: 1.33KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  

资源简介

漂亮雪花

资源截图

代码片段和文件信息

#源码来源:https://www.cnblogs.com/ruo-li-suo-yi/p/7430117.html
from turtle import *
from random import *   
 
def ground():#画下面的土地
    hideturtle()  #隐藏乌龟
    speed(100)  #速度
    for i in range(400):
        pensize(randint(510))#画笔尺寸
        
        x = randint(-400350)#位置
        y = randint(-280-1)
        
        r = -y/280
        g = -y/280
        b = -y/280
        
        pencolor((r g b))#颜色暗色调 (111)白色;(000)黑色;(100)红色;(010)绿色;(001)蓝色
        penup()
        goto(xy)#移动x轴
        pendown()
        
        forward(randint(40100))
 
def snow():    
    hideturtle()
    pensize(2)
  

评论

共有 条评论