Q:

Star pattern : 9، write python program to print the following pattern

0

Star pattern 9

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

for e in range (5,0,-1):
    print((5-e) * ' ' + e * '*')

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Star pattern : 10، write python program to print ... >>
<< Star pattern : 8، write python program to print t...