English

Write a program to print the following pattern: ** * ** * * * ** * ** - Computer Science (Python)

Advertisements
Advertisements

Question

Write a program to print the following pattern:

*
*  *  *
*  *  *  * *
*  *  *
*
Answer in Brief

Solution

     Top half`{{:((                    ∗,                     2 "space", 1 "star")),((          ∗, ∗, ∗,          1"space", 3 "star")), ((∗, ∗, ∗,∗, ∗,0"space",5"star")):}`

Bottom half`{{: ((          ∗,∗,∗)), (                    ∗):}`

# n = 3 Number of lines from top to middle of diamond shape
n = 3
for i in range (1, n + 1):
          # This will print the space  
    space = (n - i)*" "
          # It will print the star
    star =  (2 * i - 1)*"*"
    print(space,star)
# The bottom half will be drawn using this loop
for j in range(n - 1, 0, -1):
    space = (n - j)*" "
    star = (2 * j - 1)*"*"
    print(space, star)
shaalaa.com
The ‘For’ Loop
  Is there an error in this question or solution?
Chapter 6: Flow of Control - Exercise [Page 141]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 6 Flow of Control
Exercise | Q 9. i) | Page 141
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×