Signup/Sign In

Python Program to print the pattern G

In this tutorial, we will learn how to print the pattern G with stars and white spaces. We'll create a program to display the pattern G over n lines or rows. We will create the pattern G using the simple logic of iteration over lines in this program.

Let us look at the input-output for a better understanding:

G-pattern

The above image is the output of the program, we are going to cover below. In this, the user is first prompted to enter the size you want to print G and the output pattern is of G as shown above.

Approach

As mentioned above in the input-output part, let us now have a look at how this program is going to give us the desirable output:

  • In this program, we are going to print the pattern using " * " and white spaces.
  • We're going to do the operations column by column. So, we create the first if condition for the first line of stars, where the row positions 0 and (n-1) will not get the stars, but all other rows from 1 to (n-1) will get the stars.
  • Similarly, we want stars in the second, third, and fourth columns at the row = 0 and row = 1 positions (n-1). The remaining stages are self-explanatory and may be deduced from the diagram's row and column positions.
  • The resulting is the pattern which we want i.e., G.

Implementation

As of now, we have a rough understanding to print the pattern, below is the implementation of the program where we will see the algorithm followed by the code:

Algorithm

The algorithm to print pattern is mentioned below:

  1. Create a function pattern()
  2. We only perform two things here: print star(*) and print space( ).
  3. We are simply writing the conditions to make the pattern of *'s and display the pattern ‘G'.
  4. Make two loops: one for rows and one for columns.
  5. The outer loop is for rows
  6. The Inner loop is for columns
  7. Now, Print the first row and Print the last row
  8. Print the first column and print the last column
  9. Print the middle column
  10. The result printed will be G

Program

def pattern(n):
    # rows
    for row in range(n): 
        # columns
        for col in range(n): 
            if ((row == 0 and (col != 0 and col != n-1)) or               
                (row == n - 1 and (col != 0 and col != n-1)) or                
                ((col == 0 and (row != 0 and row != n-1)) or                 
                 (col == n-1 and row != n-1 and row >= (n/2)-1)) or                
                (row == (n/2)-1 and ((n/2)-1 <= col < n-1))
            ):
                print("*", end=" ")
            else:
                print(" ", end=" ")
        print()
# driver code
n = int(input("Enter the size you want: \t"))
if size < 8:
    print("Enter a size greater than 8")
else:
    pattern(n)

G-pattern

Conclusion

In this tutorial, we have print the letter 'G' with help of stars and spaces with simple iteration and loops. We can also print this pattern with any symbol you want. I hope, you will follow up on this and print the pattern with your favorite symbols just remove the star and add the symbol you want and enjoy printing "G" in python programming.



About the author:
Nikita Pandey is a talented author and expert in programming languages such as C, C++, and Java. Her writing is informative, engaging, and offers practical insights and tips for programmers at all levels.