KnowledgeBoat Logo
|

Informatics Practices

WAP to print the following pattern:

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

Python Control Flow

3 Likes

Answer

n = 5

for i in range(1, n + 1):
    for j in range(i):
        print("* ", end="")
    print()

Output

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

Answered By

2 Likes


Related Questions