* * * * *
* *
* *
* *
*
python program for this pattern
Answers
Answered by
0
Answer:
This symbol is called asterisk .
Explanation:
we can't make a python ptogram by only using a asterisk,it's impossible
Answered by
3
Correct Question:-
Write a python program for the pattern.
* * * * *
* * * *
* * *
* *
*
Program:-
for i in range(5,0,-1):
for j in range(0,i):
print("* ",end=" ")
print()
Similar questions