does pygame come with 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: python pygame
import pygame
import sys
pygame.init()
frames_per_second = 30
window_height = 600
window_width = 400
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
BLUE = (0, 0, 255)
display = pygame.display.set_mode((window_width, window_height))
clock = pygame.time.Clock()
while True:
clock.tick(frames_per_second)
display.fill(WHITE)
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()