We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44108ed commit 1598a9dCopy full SHA for 1598a9d
2444.py
@@ -0,0 +1,9 @@
1
+# 별 찍기 - 7
2
+
3
+N = int(input())
4
5
+for i in range(N):
6
+ print(' '*(N-i-1)+'*'*i+'*'+'*'*i)
7
8
+for i in range(N-1):
9
+ print(' '*(i+1)+'*'*(N-i-2)+'*'+'*'*(N-i-2))
0 commit comments