[Python]Array map in pygame
The code is below. I tried running my WIP project, however, the titled map didn't show like my array, can anyone help? code: import pygame import sys import os import time import random pygame.init() w = int(800) h = int(600) level = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1] clock = pygame.time.Clock() block = pygame.image.load("brick.png") player = pygame.image.load("Player1.png") title = pygame.image.load("Arena.png") P_button = pygame.image.load("Play.png") size = [w, h] screen = pygame.display.set_mode(size)