Computer Science, asked by sahilkumar11c46, 9 months ago

* * * * *
* *
* *
* *
*
python program for this pattern​

Answers

Answered by megha31092
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 anindyaadhikari13
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