Answer to Question #225601 in Python for kaavya

Question #225601

Diamond

Given an integer value N, write a program to print a number diamond of 2*N -1 rows as shown below.

Input

The first line of input is an integer N.

Explanation

In the given example, the number of rows in the diamond is

5.So, the output should be


. . . . 0 . . . .

. . . 0 0 0 . . .

. . 0 0 0 0 0 . .

. 0 0 0 0 0 0 0 .

0 0 0 0 0 0 0 0 0

. 0 0 0 0 0 0 0 .

. . 0 0 0 0 0 . .

. . . 0 0 0 . . .

. . . . 0 . . . .


Sample Input 1

5

Sample Output 1

. . . . 0 . . . .

. . . 0 0 0 . . .

. . 0 0 0 0 0 . .

. 0 0 0 0 0 0 0 .

0 0 0 0 0 0 0 0 0

. 0 0 0 0 0 0 0 .

. . 0 0 0 0 0 . .

. . . 0 0 0 . . .

. . . . 0 . . . .

Sample Input 2

4

Sample Output 2

. . . 0 . . .

. . 0 0 0 . .

. 0 0 0 0 0 .

0 0 0 0 0 0 0

. 0 0 0 0 0 .

. . 0 0 0 . .

. . . 0 . . .




1
Expert's answer
2021-08-15T04:05:44-0400
n=  int(input('Enter integer here'))
s = 2*n-1
a = 1
b = 1
for a in range(s+1):
    if a%2 != 0:
        val = (s - a) // 2
        print (". "*val + "0 "*(a) + ". "*val ,end = "\n")
for b in range(s-1,0,-1):
    if b%2 != 0:
        val2 = (s-b)//2
        print (". "*val2 + "0 "*(b) + ". "*val2 ,end = "\n")

Enter integer here5
. . . . 0 . . . . 
. . . 0 0 0 . . . 
. . 0 0 0 0 0 . . 
. 0 0 0 0 0 0 0 . 
0 0 0 0 0 0 0 0 0 
. 0 0 0 0 0 0 0 . 
. . 0 0 0 0 0 . . 
. . . 0 0 0 . . . 
. . . . 0 . . . . 

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS