how to make a square in pygame code example

Example 1: how to make a rectangle in pygame

# make the x position, y position, width and the height of the rectangle
x_pos = 20
y_pos = 20
width = 50
height = 50

# make the rectangle variable
rectangle = pygame.Rect(x_pos, y_pos, width, height)

# now add this to a surface, add a colour and the rectangle and make it a function
def make_rect():
	pygame.draw.rect(surface, (RGB colour in this tuple), rectangle)


# after this add it to your infinite loop
run = True
while run:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False
            
	make_rect()
    pygame.display.update()

Example 2: pygame.draw.rect()

gameDisplay = pygame.display.set_mode((width,height))
bright_blue =(0,255,255)

# draw rectangle 
pygame.draw.rect(gameDisplay, bright_blue ,(611,473,100,50))

Example 3: pygame how to draw square

#Importing the library
import pygame
  
# Initializing Pygame
pygame.init()
  
# Initializing screen
screen = pygame.display.set_mode((400,300))
  
# Initialing Color
color = (255,0,0)
  
# Drawing Rectangle
pygame.draw.rect(screen, color, pygame.Rect(30, 30, 60, 60))
pygame.display.flip()