Question: - Write a Python program to print a stairway * array. The program asks for an input ( between 1 and 9 ) . For

- Write a Python program to print a stairway * array. The program asks for an input(between 1 and 9). For example, if the input is 3, such an array will be printed. One * in row 1, two *s in row 2, and three *s in row three.
*
**
***
If the input is 6, such an array will be printed. * in row 1, two \({}^{*}\) in row 2, and so on.
```
*
**
***
****
******
*******
```
- Write a Python program to print a stairway *

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!