write a program to print a following pattern
*
* *
* * *
* * * *
* * * * *
in python please
Answers
Answered by
0
Answer:
coding:
str = ' * '
for i in range (1,6):
print ( str*i)
hope it helps !
Similar questions