Saturday, 15 February 2025

Pyramid Pattern Plot using Python


 import matplotlib.pyplot as plt

rows = 5

plt.figure(figsize=(6, 6))

for i in range(rows):

    for j in range(2 * i + 1):  

        x = j - i  

        y = -i

        plt.scatter(x, y, s=500, c='gold')  

plt.xlim(-rows, rows)

plt.ylim(-rows, 1)

plt.axis('off')

plt.gca().set_aspect('equal', adjustable='datalim')

plt.title("Pyramid Pattern Plot", fontsize=14)

plt.show()

#source code --> clcoding.com 

Code Explanation:

1. Import Required Library
import matplotlib.pyplot as plt
matplotlib.pyplot is used for plotting the pattern.

2. Define the Number of Rows
rows = 5
This sets the height of the pyramid (i.e., the number of rows).

3. Create the Figure
plt.figure(figsize=(6, 6))
Creates a 6x6 inch figure to display the plot properly.

4. Generate the Pyramid Pattern Using Nested Loops
for i in range(rows):  # Loop through each row
    for j in range(2 * i + 1):  # Increasing dots to form a pyramid
        x = j - i  # Centers the pyramid
        y = -i  # Moves rows downward
        plt.scatter(x, y, s=500, c='gold')  # Plot gold-colored dots
Outer loop (i) → Controls the number of rows.
Inner loop (j) → Controls the number of dots per row:
Row 0 → 1 dot
Row 1 → 3 dots
Row 2 → 5 dots
Row 3 → 7 dots
Row 4 → 9 dots
The pattern follows the formula:
Dots in row 
Dots in row i=2i+1
Plotting the dots:
plt.scatter(x, y, s=500, c='gold')
s=500 → Sets the dot size.
c='gold' → Colors the dots gold.

5. Adjust the Axis Limits
plt.xlim(-rows, rows)
plt.ylim(-rows, 1)
X-axis limit: (-rows, rows) → Ensures the pyramid is centered.
Y-axis limit: (-rows, 1) → Ensures the pyramid is properly positioned.

6. Format the Plot
plt.axis('off')  # Hides the x and y axes
plt.gca().set_aspect('equal', adjustable='datalim')  
plt.title("Pyramid Pattern Plot", fontsize=14)  
Removes the axis for a clean look.
Ensures equal spacing for uniform dot distribution.
Adds a title to the plot.

7. Display the Final Output
plt.show()
Displays the pyramid pattern.

Related Posts:

0 Comments:

Post a Comment

Popular Posts

Categories

100 Python Programs for Beginner (97) AI (39) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (197) C (77) C# (12) C++ (83) Course (67) Coursera (251) Cybersecurity (25) Data Analysis (3) Data Analytics (3) data management (11) Data Science (149) Data Strucures (8) Deep Learning (21) Django (16) Downloads (3) edx (2) Engineering (14) Euron (29) Events (6) Excel (13) Factorial (1) Finance (6) flask (3) flutter (1) FPL (17) Generative AI (11) Google (36) Hadoop (3) HTML Quiz (1) HTML&CSS (47) IBM (30) IoT (1) IS (25) Java (93) Java quiz (1) Leet Code (4) Machine Learning (85) Meta (22) MICHIGAN (5) microsoft (4) Nvidia (4) Pandas (4) PHP (20) Projects (29) pyth (1) Python (1047) Python Coding Challenge (456) Python Quiz (122) Python Tips (5) Questions (2) R (70) React (6) Scripting (3) security (3) Selenium Webdriver (4) Software (17) SQL (42) UX Research (1) web application (8) Web development (4) web scraping (2)

Followers

Python Coding for Kids ( Free Demo for Everyone)