Answer to Question #225204 in Python for Reclimet

Question #225204

Diamond


This Program name is Diamond. Write a Python program to Diamond, it has two test cases


The below link contains Diamond question, explanation and test cases


https://docs.google.com/document/d/1LtfuUk5t1IPGh6yCOoJ2Tm3AZFZnVb1W/edit?usp=sharing&ouid=104486799211107564921&rtpof=true&sd=true


We need exact output when the code was run

1
Expert's answer
2021-08-11T14:14:17-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