Question #236183

Diamond Crystal

Given an integer value 

N, write a program to print a diamond pattern of 2*N 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 

2*5 = 10.

So, the output should be




    /\
   /  \
  /    \
 /      \
/        \
\        /
 \      /
  \    /
   \  /
    \/

Expert's answer

N = int(input())
for i in range(N):
    print(' ' * (N - i - 1), end='')
    print('/', end='')
    print(' ' * (2 * i), end='')
    print('\\')
for i in range(N - 1, -1, -1):
    print(' ' * (N - i - 1), end='')
    print('\\', end='')
    print(' ' * (2 * i), end='')
    print('/')

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!

LATEST TUTORIALS
APPROVED BY CLIENTS