WorksheetsReady Set Python 2 L3 - Pygame Review
Total questions: 17
Worksheet time: 14mins
Games are interactive playthings with goals
True
False
Games have competitors that are able to interfere with each other
True
False
What is Pygame?
An online store for games
A best-selling online game
A website to create and/or upload game assets for Python
A Python Programming library to create games
How can we create displays/screens with Pygame?
pygame.display.set_mode()
pygame.draw.rect()
pygame.display.set_caption()
pygame.key.get_pressed()
What is the size of the pygame display?
250 x 250
500 x 500
2500 x 2500
5000 x 5000
How can we create rectangle shapes in Pygame?
pygame.display.set_mode()
pygame.draw.rect()
pygame.key.get_pressed()
pygame.mixer.Sound()
What is the size of the rectangle?
50 x 40
40 x 60
100 x 100
500 x 500
How can we check keyboard key presses with Pygame?
pygame.key.get_pressed()
pygame.mixer.Sound()
pygame.display.set_caption()
pygame.draw.rect()
What keyboard keys will move the x and y coordinate of our player?
W A S D
Up, Down, Left, Right Arrow Keys
How can we load Images (.png) to Pygame?
pygame.key.get_pressed()
pygame.mixer.Sound()
pygame.image.load()
pygame.draw.rect()
After loading our image to Pygame, we should get_rect() and blit(), update() it to our display to show it.
True
False
How do we load a font to our Pygame project?
pygame.key.get_pressed()
pygame.font.Font()
pygame.mixer.Sound()
pygame.image.load()
What is the preferred file type if we want to upload a custom font?
.txt
.html
.ttf
How do we load sounds to Pygame?
pygame.key.get_pressed()
pygame.font.Font()
pygame.mixer.Sound()
pygame.image.load()
Write down 3 things that you have learned with Pygame
Write 2 of your Favorite Games
Write 1 Question you have about Pygame/Game Development
