基于Python实现流星⾬效果的绘制
⽬录
1 前⾔
2 霍⾦说移民外太空
3 浪漫的流星⾬展⽰
4 Python代码
1 前⾔
我们先给个⼩故事,提⼀下⼤家兴趣;然后我给出论据,得出结论。最后再浪漫的流星⾬表⽩代码奉上,还有我⾃创的⼀⾸诗。开始啦:
2 霍⾦说移民外太空
霍⾦说我们将来外星上⽣存;埃隆.马斯克也是这样想的。
我前⾯讲外星⼈来不到地球,这个道理已经很清楚。我再说⼏个数据,⼤家听听,我们且不要说到更远的外星,我们⼈类今天登上⽉球,把⼀个字航员送上⽉球,他在⽉球上待⼀分钟,要消耗地球⼀百万美元的资源才能在⽉球上待⼀分钟。
我们说未来在⽕星上殖民,想想你在⽉球上⼀个⼈待⼀分钟,要消耗地球⼀百万美元的资源,你在⽕星上殖民⼏千⼈、⼏万⼈,你得把整个地球资源毁灭掉,都调到⽕星上去。然后你只把七⼗亿⼈调过去了⼏千、⼏万⼈,然后他在那可能死得更快,这根本不是出路,这怎么会成为出路呢?
我们再看,移居外星,离我们地球最近的另⼀个恒星系叫半⼈马座。半⼈马座,阿尔法星
也叫⽐邻星。⼤家注意,这都是恒星,⽐邻星距离太阳最近,有多近?  4.2光年,光以每秒钟三⼗万公⾥,⾛4.2年,就这我们还不知道⽐邻星的那个恒星旁边有没有⾏星。
就算有⾏星有没有宜居⾏星、类地⾏星。这我们还全然不知道。我们就假定那个地⽅有好了另⼀个地球,你按照今天⼈类⽕箭和卫星的最⾼速度,你单程从地球上飞到⽐邻星,需要⼀万五千年到三万年。
请注意我们⽂明史,⽂明有⽂字,以后的⽂明迄今才五千年,你单程飞到那个地⽅要⼀万五千年以上。我说过有没有⾏星都不知道。这个前途存在吗?根本不存在。就像外星⼈来不了我们这⼉⼀样,我们也到不了任何外星存在。
我们今天连太阳系都没有⾛出去,没有在太阳系的任何⼀个⾏星上殖民,所以移民外星根本不是出路。
3 浪漫的流星⾬展⽰
动态视频最近⼏天由于后台服务器升级,所以视频过⼏天我上传上来。
4 Python代码
def bgpic(self, picname=None):
"""Set background image or return name of current backgroundimage.
Optional argument:
picname -- a string, name of a gif-file or "nopic".
If picname is a filename, set the corresponding image as background.
If picname is "nopic", delete backgroundimage, if present.
If picname is None, return the filename of the current backgroundimage.
Example (for a TurtleScreen instance named screen):
>>> screen.bgpic()
'nopic'
>>> screen.bgpic("landscape.gif")
>>> screen.bgpic()
怎么给电脑安装linux系统'landscape.gif'
"""
if picname is None:
return self._bgpicname
if picname not in self._bgpics:
self._bgpics[picname] = self._image(picname)
self._setbgpic(self._bgpic, self._bgpics[picname])
self._bgpicname = picname
# coding: utf-8
import pygame
import os
import sys
from pygame.locals import *
os.chdir('E:/星空下的告⽩')
pygame.init()
可视化数据图表怎么做
pygame.mixer.init()
pygame.mixer.music.load("星空之美.mp3")
# pygame.mixer.music.set_volume(0.4)
pygame.mixer.music.play()
bg_size = width, height = 300, 200
bg_rgb = (255, 255, 255)
screen1 = pygame.display.set_mode(bg_size)
pygame.display.set_caption("告⽩⾳乐")
clock = pygame.time.Clock()
pause_rect = _rect()
print(pause_rect.width, pause_rect.height)
pause_rect.left, p = (width - pause_rect.width) // 2, (height - pause_rect.height) // 2 from turtle import *
html5video标签from random import random, randint
os.chdir('E:星空下的告⽩')
screen = Screen()
width, height = 900, 700
screen.setup(width, height)
screen.title("浪漫的流星⾬")
screen.bgcolor("black")
screen.delay(0)
printer = Turtle()
printer.hideturtle()
printer.penup()
<(-100, -350)
printer.write("宇宙⼴阔(弱⽔三千)""\n\n", move=True, align="left", font=("Italic", 30, "bold")) (-50, -400)
printer.write("只寻你⼀颗!(只取⼀瓢饮!)\n\n", move=True, align="left", font=("Italic", 30, "bold")) t = Turtle(visible=False, shape='circle')
t.pencolor("white")
京东python入门教程
t.fillcolor("white")
t.penup()
t.setheading(-90)
<(width / 2, randint(-height / 2, height / 2))
stars = []
for i in range(300):
star = t.clone()
s = random() / 3
if s > 0.01 and s < 0.03:
star.pencolor("black")
star.fillcolor("black")
elif s > 0.03 and s < 0.04:
star.pencolor("lightcoral")
star.fillcolor("lightcoral")
elif s > 0.05 and s < 0.1:
star.pencolor("green")
star.fillcolor("green")
elif s > 0.15 and s < 0.16:
star.pencolor("yellow")
star.fillcolor("yellow")
elif s > 0.19 and s < 0.2:
star.pencolor("red")
star.fillcolor("red")
elif s > 0.21 and s < 0.22:
star.pencolor("purple")
star.fillcolor("purple")
elif s > 0.29 and s < 0.3:
star.pencolor("darkorange")
star.fillcolor("darkorange")
elif s > 0.31 and s < 0.32:
star.pencolor("red")
star.fillcolor("yellow")
elif s > 0.32 and s < 0.33:socket 什么语言
star.pencolor("yellow")
star.fillcolor("white")
star.shapesize(s, s)
star.speed(int(s * 30))
狼人在线观看视频人在线
star.setx(width / 2 + randint(1, width))
star.sety(randint(-height / 2, height / 2))
# star.showturtle()
stars.append(star)
i = 0
pause = False
while True:
i += 0
for star in stars:
star.() - 3 * star.speed())
() < -width / 2:
star.hideturtle()
star.setx(width / 2 + randint(1, width))
star.sety(randint(-height / 2, height / 2))
star.showturtle()
if i >= 100:
break
# 查队列事件
for event in ():
# 查点击关闭窗⼝事件
pe == QUIT:
# 查⿏标左右击事件
pe == MOUSEBUTTONDOWN:
if event.button == 1:
pause = not pause
if event.button == 3:
pause = not pause
pe == KEYDOWN:
if event.key == K_SPACE:
pause = not pause
screen1.fill(bg_rgb)
if pause:
pygame.mixer.music.pause()
screen1.blit(pause_image, pause_rect)
else:
pygame.mixer.music.unpause()
screen1.blit(play_image, pause_rect)
pygame.display.flip()
clock.tick(30)
到此这篇关于基于Python实现流星⾬效果的绘制的⽂章就介绍到这了,更多相关Python流星⾬内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。