백준-2444 : 별 찍기 - 7(Python)

잡초·2023년 4월 4일
0
post-thumbnail
n = int(input())
for i in range(1,n):
    print(" "*(n-i)+"*"*(2*i-1))
for i in range(n,0,-1):
    print(" "*(n-i)+"*"*(2*i-1))
profile
개발자가 되고싶은 잡초

0개의 댓글