Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 818 Bytes

README.md

File metadata and controls

43 lines (24 loc) · 818 Bytes

551. 반복제어문3 - 자가진단4

문제 링크

1회독: 20.12.15

Idea

문자열을 왼쪽에는 공백을 두고 오른쪽에 출력하기

참고자료

my solution

n = int(input())
for i in range(n, 0, -1):
    print(('*'*i).rjust(n))

참고

# str.rjust(width[, fillchar])
width의 길이에 부족하면 왼쪽은 공백을 두겠다

# str.ljust() / str.center() 존재

# example
print('123'.rjust(5))
=> '  123'

태그

  • 문자열 정렬
  • 출력