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
/\
/ \
/ \
/ \
/ \
\ /
\ /
\ /
\ /
\/
Sample Input 1
5
Sample Output 1
/\
/ \
/ \
/ \
/ \
\ /
\ /
\ /
\ /
\/
Sample Input 2
3
Sample Output 2
/\
/ \
/ \
\ /
\ /
\/
please provide the correct output.
N = int(input())
for i in range(0,N):
print(' '*(N-i-1)+'/'+' '*(2*i)+'\\')
for i in range(0,N):
print(' '*(i)+'\\'+' '*(2*(N-i-1))+'/')
Comments
Leave a comment