---------------turtle源码集合---------------
Python教程91:关于海龟画图,Turtle模块需要学习的知识点
Python教程51:海龟画图turtle画(三角形、正方形、五边形、六边形、圆、同心圆、边切圆,五角星,椭圆)
Python源码54:海龟画图turtle画天安门
Python源码53:海龟画图turtle画圣诞树
Python教程52:程序员6款,简易版的爱心表白代码合集
Python源码50:海龟画图turtle画py图标
Python源码49:海龟画图turtle画美国旗
Python教程48:海龟画图turtle画太极八卦阵
Python源码47:海龟画图turtle画巴斯光年
Python源码46:海龟画图turtle画坤坤
Python源码45:海龟画图turtle画雪容融
Python源码44:海龟画图turtle,画2022卡塔尔世界杯吉祥物
Python教程43:海龟画图turtle画小樱魔法阵
Python教程42:海龟画图turtle画海绵宝宝
Python教程41:海龟画图turtle画蜡笔小新
Python教程40:使用turtle画一只杰瑞
Python教程39:使用turtle画美国队长盾牌
Python教程38:使用turtle画动态粒子爱心+文字爱心
Python教程37:使用turtle画一个戴帽子的皮卡丘
Python教程36:海龟画图turtle写春联
Python源码35:海龟画图turtle画中国结
Python源码31:海龟画图turtle画七道彩虹
Python源码30:海龟画图turtle画紫色的小熊
Python源码29:海龟画图turtle画太极图
Python源码28:海龟画图turtle画熊猫
Python源码27:海龟画图turtle画动态圆舞曲
Python源码26:海龟画图turtle画向日葵
Python源码25:海龟画图turtle画小猪佩奇
Python源码24:使用海龟画图turtle画滑板
Python源码23:使用海龟画图turtle画小狗狗
Python源码22:使用海龟画图turtle画今天日期
Python源码21:使用海龟画图turtle画太阳,云朵,房子,绿树
Python源码20:使用海龟画图turtle画一个会动的星空
Python源码19:海龟画图turtle画螺旋的彩色的逐渐放大的文字
Python源码18:使用海龟画图turtle画捂脸表情
Python源码17:使用海龟画图turtle画五星红旗
Python源码16:使用海龟画图turtle画会动的时钟
Python源码15:使用海龟画图turtle画小黄人
Python源码14:使用海龟画图turtle画我的城堡
Python源码分享13:使用海龟画图turtle画一个会眨眼的皮卡丘
Python源码分享12:使用turtle画彩色六边形
Python源码分享11:使用海龟画图turtle画航天火箭
Python源码分享10:使用海龟画图turtle画哆啦A梦
Python源代码分享:02海龟画图五角星
Python源代码分享:03画一个奥运五环图
Python源代码分享:05使用turtle模块绘制一个彩色螺旋图案
Python源代码分享:07画满天繁星
Python源码分享08:使用turtle画一朵玫瑰花
Python源码分享10:使用海龟画图turtle画哆啦A梦
Python源码分享11:使用海龟画图turtle画航天火箭
Python源码分享12:使用turtle画彩色六边形
# @Author : 小红牛
# 微信公众号:WdPython
import turtle as t
import random
import math
def meteors_shower():
t.setup(1.0, 1.0)
t.screensize(1.0, 1.0) # 设置画布为全屏
t.bgcolor('black') # 设置画布颜色
t.title('五颜六色的流星雨')
t.hideturtle() # 隐藏画笔
colors = ['red', 'purple', 'skyblue', 'yellow', 'hotpink', 'lightpink',
'blue', 'aqua', 'deeppink', 'cyan', 'white']
# 1.流星类
class Star():
def __init__(self):
self.r = random.randint(50, 100) # 长度
self.t = random.randint(1, 2) # 宽度
self.x = random.randint(-1800, 500) # 横坐标
self.y = random.randint(444, 999) # 纵坐标
self.speed = random.randint(4, 10) # 移动速度
self.color = random.choice(colors) # 颜色
self.size = 1 # 画笔的大小
# 1.画流星函数
def star(self):
t.pensize(self.size) # 流星的大小
t.penup() # 提笔
t.goto(self.x, self.y) # 随机位置
t.pendown() # 落笔
t.color(self.color)
t.begin_fill()
# 填充颜色
t.fillcolor(self.color)
t.setheading(-30)
t.right(self.t)
t.forward(self.r)
t.left(self.t)
t.circle(self.r*math.sin(math.radians(self.t)), 180)
t.left(self.t)
t.forward(self.r)
t.end_fill()
# 2.流星移动函数
def move(self):
if self.y >= -500: # 当流星还在画布中时
self.y -= self.speed # 设置上下移动速度
self.x += 2*self.speed # 设置左右移动速度
else:
self.r = random.randint(50, 100)
self.t = random.randint(1, 2)
self.x = random.randint(-1800, 500) # 流星的横坐标
self.y = random.randint(444, 999) # 流星的纵坐标
self.speed = random.randint(4, 10) # 流星移动速度
self.color = random.choice(colors) # 流星的颜色
self.outline = 1 # 流星的大小
Stars = [] # 用列表保存所有流星
for i in range(100):
Stars.append(Star())
while True: # 开始绘制
t.tracer(0) # 关闭图形更新
t.clear()
for i in range(100): # 100个流星
Stars[i].move()
Stars[i].star()
# 更新屏幕
t.update()
t.done()
# 调用函数
meteors_shower()
完毕!!感谢您的收看
----------★★历史博文集合★★----------
我的零基础Python教程,Python入门篇 进阶篇 视频教程 Py安装py项目 Python模块 Python爬虫 Json Xpath 正则表达式 Selenium Etree CssGui程序开发 Tkinter Pyqt5 列表元组字典数据可视化 matplotlib 词云图 Pyecharts 海龟画图 Pandas Bug处理 电脑小知识office自动化办公 编程工具