Hello I am following the pygame game code and I get the following error and post a question. When I run it, the screen pops up and then disappears immediately.The background color is also executed without saving. (Mac OS)
import pygame
pygame.init() # 초기화 (반드시 필요)
#화면 크기 설정
screen_width = 480 # 가로 크기
screen_height = 640 # 세로 크기
screen = pygame.display.set_mode((screen_width, screen_height))
# 화면 타이틀 설정
pygame.display.set_caption("Kim Game") # 게임 이름
# 배경 이미지 블로오기
background = pygame.image.load(("r'C:/Users/king/Desktop/practica/pygame_basic/background.png"))
# 이벤트 루프
running = True # 게임이 진행중인가?
while running:
for event in pygame.event.get(): # 어떤 이벤트가 발생하였는가?
if event.type == pygame.QUIT: # 창이 닫히는 이벤트가 발생하였는가?
running = false # 게임이 진행중이 아님
screen.blit(background, (0, 0)) # 배경 그리기
pygame.display.update() # 게임화면을 다시 그리기
# prgame 종료
pygame.quit
Execution FileNotFoundError: No such file or directory.