Title Text

Creating the game screen

  • Import pygame
  • Initialize pygame
  • Create the screen
  • Set screen caption
  • Create the game loop
  • Finish the game
init()
import 
display.set_mode()
display.set_caption()
while True:
pygame.quit()

Steps to be followed:

Let's begin by creating the basic game screen.

deck

By anjali_sharma