大家好,小编来为大家解答以下问题,青少年python创意编程趣味课堂,python创意编程比赛作品 高中,现在让我们一起来看看吧!
大家好,本文将围绕python创意小作品100行代码左右展开说明,简单且有创意的python作品是一个很多人都想弄明白的事情,想搞清楚python创意编程大赛作品需要先了解以下几个事情。
【实例简介】漂亮雪花
【实例截图】
【核心代码】
from turtle import *
from random import *
def ground():#画下面的土地
hideturtle() #隐藏乌龟
speed(100) #速度
for i in range(400):
pensize(randint(5,10))#画笔尺寸
x = randint(-400,350)#位置
y = randint(-280,-1)
r = -y/280
g = -y/280
b = -y/280
pencolor((r, g, b))#颜色暗色调, (1,1,1)白色;(0,0,0)黑色;(100)红色;(010)绿色;(001)蓝色
penup()
goto(x,y)#移动x轴
pendown()
forward(randint(40,100))
def snow():
hideturtle()
pensize(2)
speed(100)
for i in range(100):
r = random()
g = random()
b = random()
pencolor(r, g, b)#随机生成
penup()
setx(randint(-350,350))
sety(randint(1,270))
p