gpt4 book ai didi

python - 谁能告诉我如何使打印屏幕变蓝?

转载 作者:行者123 更新时间:2023-12-03 01:17:18 26 4
gpt4 key购买 nike

这是原始问题:

如上所示,我需要打印蓝屏。这是我所做的:

import pygame

pygame.init()

blue = (0, 0, 255)

size = (width, height) = (640, 640)

screen = pygame.display.set_mode(size)

""" Game Drawing """
screen.fill(blue)
pyagme.draw.rect(screen, color, [x, y, 50, 50])
pygame.draw.rect(screen, blue, [mouseX, mouseY, 50, 50])
pygame.display.flip()

但是,只产生黑屏...谁能告诉我如何解决它?

最佳答案

好的,让我们修复代码中的错误。

import pygame

pygame.init()
blue = (0, 0, 255)
red = (255, 0, 0)
size = (640, 640)
screen = pygame.display.set_mode(size)

screen.fill(blue)
pygame.draw.rect(screen, red, [0,590, 50, 640])
pygame.display.update()

crashed = False
while not crashed:
for event in pygame.event.get():
if event.type == pygame.QUIT:
crashed = True
pygame.quit()

现在您的屏幕为蓝色。而且您有一个红色正方形。

关于python - 谁能告诉我如何使打印屏幕变蓝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62096393/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com