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
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 . . . .
Comments
Leave a comment