运行代码时,屏幕显示为黑色,直到将Pygame窗口从桌面窗口中移开,然后它同时显示白色填充和红色矩形。如何使其仅显示填充而不将其移出桌面屏幕?
import pygame
pygame.init()
screen = pygame.display.set_mode((1200, 800))
run = True
def block(color, x, y, l, w):
pygame.draw.rect(screen, color, pygame.Rect(x, y, l, w))
while run:
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
screen.fill((255, 255, 255))
block((255, 0, 0), 150, 150, 50, 50)
pygame.display.flip
答案 0 :(得分:3)
最后一行df.read_csv('file', thousands=',')
不正确。该行应该是一个函数调用,但是相反,您只是引用函数对象,然后什么也不做。而是用pygame.display.flip
替换最后一行。