Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

how to print pyramid pattern as an array/list of strings [closed]

$
0
0

I want to print pyramid pattern like this:when n=3

 ["  *  "," *** ", "*****"]

when n=6

 ["     *     ", "    ***    ", "   *****   ", "  *******  ", " ********* ", "***********"]

When i use the below code as n=5, i got:'''python

# outer loop to handle number of rowsfor i in range(0, n):    # inner loop to handle number spaces    # values changing acc. to requirement    for j in range(0, k):        print(end=" ")    # decrementing k after each loop    k = k - 1    # inner loop to handle number of columns    # values changing acc. to outer loop    for j in range(0, i + 1):        # printing stars        print("*", end=" ")    # ending line after each row    print("\r")

The output is:

       *      * *     * * *    * * * *   * * * * *

How to solve this using python!!


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>