[python] 백준 2439 별 찍기 -2

rse·2022년 11월 26일
0

알고리즘

목록 보기
11/44
post-custom-banner

https://www.acmicpc.net/problem/2439

별을 오른쪽으로 나오게 출력해보자

n = int(input())

for i in range(1, n+1):
	print(str("*"*i).rjust(n))

rjust는 오른쪽으로 출력해주는 함수이다.
왼쪽으로는 ljust 기억해두자.

사용법은 rjust() 괄호안에 몇 칸을 오른쪽으로 할 것인지 넣어주면 됨.

profile
기록을 합시다
post-custom-banner

0개의 댓글