Randomly Colored Circle Drawing with Pygame

  • Share this:

Code introduction


This function draws a randomly colored circle on the screen using the pygame library. It takes the screen object, color, radius, and position as arguments.


Technology Stack : pygame

Code Type : Graphics drawing

Code Difficulty : Intermediate


                
                    
def draw_random_circle(screen, color, radius, position):
    import random
    import pygame
    
    # Create a new circle at a random position with a random color
    x, y = position
    new_color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
    new_circle = pygame.draw.circle(screen, new_color, (x, y), radius)                
              
Tags: