ljust, rjust 함수

밍기적·2023년 1월 25일
0

문자열을 정렬할 때 사용하는 String에 속해있는 메소드


ljust(n, c='')

  • 문자열을 왼쪽으로 n만큼 정렬한 후 빈칸은 c로 채워넣음

rjust(n, c='')

  • 문자열을 오른쪽으로 n만큼 정렬한 후 빈칸은 c로 채워넣음

예시

a = 'abc'
print(a.ljust(10))
print(a.ljust(10, '-'))

b = 'def'
print(b.rjust(10))
print(b.rjust(10, '-'))

출력

abc
abc-------

       def
-------def

0개의 댓글