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!!