python3.7-初学篇-17
Posted liangbannerhulk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.7-初学篇-17相关的知识,希望对你有一定的参考价值。
import sys
import pygame
def run_game():
#initialize game and create a dispaly object
pygame.init()
screen = pygame.display.set_mode((1200,800))
pygame.display.set_caption("Alien Invasion")
# set backgroud color
bg_color = (230,230,230)
# game loop
while True:
# supervise keyboard and mouse item
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
# fill color
screen.fill(bg_color)
# visualiaze the window
pygame.display.flip()
run_game( )
以上是关于python3.7-初学篇-17的主要内容,如果未能解决你的问题,请参考以下文章