1、实现源码
import sys;
import pygame;
pygame.init();
s = width,height = 600,400;
sc = pygame.display.set_mode(s);
c = (0,153,204);
while True:
for e in pygame.event.get():
if e.type == pygame.QUIT:
sys.exit();
sc.fill(c);
pygame.display.flip();
pygame.quit();
2、实现图形