level 1
import turtleimport pygame
# 初始化pygame.init()#
创建游戏窗口win_width, win_height = 800, 600window = pygame.display.set_mode((win_width, win_height))sound_file = "sounds/M01-13.mp3"sound = pygame.mixer.Sound(sound_file)running = Truewhile running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False
2026年06月20日 08点06分
