Flappy Bird – Libraries

Create a Project Folder (You could call it Flappy)

Start a New file and save it into a folder for this project
(each project should have its own folder)

Add the following code

#Import the modules needed
# - pygame
import  pygame
 
# - random
import  random
 
# Initalise the pygame module
# Initialising the modules in pygame
pygame.init() 
 
# Create your screen size
# Setting the display
SCREEN = pygame.display.set_mode((500, 750))
 
##########################################################
##                                                      ##
##        Replace this with Code from Step TWO          ##
##                                                      ##
##########################################################

Run your code

You should see a screen like this