Computer Science, asked by mayankmewari64, 8 months ago

write a program to print a following pattern
*
* *
* * *
* * * *
* * * * *
in python please​

Answers

Answered by pmvjs299
0

Answer:

coding:

str = ' * '

for i in range (1,6):

       print ( str*i)

hope it helps !

Similar questions