how to create a pygame in python code example
Example 1: pygame example
1
2
3
4 import pygame
5 pygame.init()
6
7
8 screen = pygame.display.set_mode([500, 500])
9
10
11 running = True
12 while running:
13
14
15 for event in pygame.event.get():
16 if event.type == pygame.QUIT:
17 running = False
18
19
20 screen.fill((255, 255, 255))
21
22
23 pygame.draw.circle(screen, (0, 0, 255), (250, 250), 75)
24
25
26 pygame.display.flip()
27
28
29 pygame.quit()
Example 2: pygame tutorial
import pygame
pygame.init()