编程语言
首页 > 编程语言> > Python如何让电脑“嗨”起来

Python如何让电脑“嗨”起来

作者:互联网

# 2021 12 25 - Pandaoxi
# 快乐的电脑 程序
import pygame
from pygame.locals import *
from easygui import msgbox
from random import randint

pygame.init()
pygame.mixer.init()
canvas = pygame.display.set_mode((500,500))
pygame.display.set_caption('快乐的电脑')
canvas.fill((255,255,255))
sound = pygame.mixer.Sound('./music.mp3')
sound.play()

def getEvent():
    for event in pygame.event.get():
        if event.type == QUIT:
            msgbox('电脑:你礼貌吗?不让我快乐?\n你想关掉这个窗口?\n不存在的。当然,电脑也不同意呢。','快乐的电脑','继续 HAPPY')
    
while True:
    canvas.fill((randint(0,255),randint(0,255),randint(0,255)))
    getEvent()
    pygame.display.update()

这一段程序,请谨慎运行。其中的music.mp3,请到这里下载。
程序可以不断变更窗口颜色,让人眼花缭乱,而且关不掉,如果想要关掉请用任务管理器关,从窗口关的事件我在程序里改了。

标签:randint,Python,电脑,如何,pygame,import,event,255
来源: https://blog.csdn.net/PanDaoxi2020/article/details/122149239