[Python] BOJ 2441번. 별 찍기 - 4 작성일 2020-06-09 | In Algorithm | 2441번. 별 찍기 - 4 문제 링크 https://www.acmicpc.net/problem/2441 풀이 코드 123456# 2441번. 별 찍기 - 4 n = int(input()) for i in range(n): print(' '*i+'*'*(n-i)) 비고