Home » Diamond Pattern in Python

Diamond Pattern in Python

Diamond Pattern in Python

Hello everybody! Welcome to programminginpython.com, I’m back with another tutorial. Here I will tell you how to print a diamond pattern in Python. In earlier posts, I have shared with you how to print a pyramid pattern and reverse pyramid pattern. In this post, I will combine both to print a Diamond pattern in Python.

Tip: Join DataCamp. Learn the data skills you need online at your own pace—from non-coding essentials to data science and machine learning.

Program on Github

You can also watch the video on YouTube here.

Task

Python Program to print a Diamond Pattern.

Approach

  • Read an input integer to ask for the range of the diamond using  input()
  • Run 2 for loops, one for printing in a pyramid pattern and the other for printing in a reverse pyramid pattern.
  • In each of the loops, every line with a specific * and ` ` is printed.

Print Diamond Pattern – Code Visualization

Program on Github

Program

__author__ = 'Avinash'

# Print a Diamond

# Range of the diamond
num = int(input("Enter the range: \t "))

# pyramid
for p in range(num):
    print(' '*(num-p-1)+'* '*(p+1))

# reverse pyramid
for rp in range(num-1, 0, -1):
    print(' '*(num-rp)+'* '*rp)

Output

Diamond Pattern in Python
Diamond Pattern in Python

Program on GitHub

That’s it for this tutorial. Feel free to look at other pattern programs here or check out the programs on Algorithms here.

Check out the top 7 books for Python in 2025

  1. Python Crash Course, 3rd Edition by Eric Matthes
  2. Fluent Python, 2nd Edition by Luciano Ramalho
  3. Python for Data Analysis, 3rd Edition by Wes McKinney
  4. Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow, 3rd Edition by Aurélien Géron
  5. Automate the Boring Stuff with Python, 3rd Edition by Al Sweigart
  6. Effective Python: 90 Specific Ways to Write Better Python, 2nd Edition by Brett Slatkin
  7. Python Design Patterns: A Guide to Creating Reusable Software, 1st Edition by Kamon Ayeva and Sakis Kasampalis
Course Suggestion

The Complete Web Developer Course.
Learn Web Development by building 25 websites and mobile apps using HTML, CSS, JavaScript, PHP, Python, MySQL & more!
Course: The Complete Web Developer Course 2.0

For more pattern programming, check the links below,

Online Python Compiler

2 thoughts on “Diamond Pattern in Python

  1. Great post! The explanation of how to create a diamond pattern in Python was really clear and easy to follow. I especially appreciated the step-by-step breakdown of the code. Looking forward to trying this out myself!

Leave a Reply

Your email address will not be published. Required fields are marked *