[python] 문자열 정렬하기

J·2021년 1월 11일
0

python

목록 보기
1/11

문자열 정렬하기

코드를 짜다보면, 디버깅 또는 알림을 위해서 출력을 해야할 때가 있는데 특히 누군가에게 보여줄 때에는 좀 이쁘게 출력하는 것도 필요하다. 이 때 사용할 수 있는 기능이다.

s = 'abc'
n = 9

print(s.ljust(n)) # 좌측 정렬
print(s.center(n)) # 가운데 정렬
print(s.rjust(n)) # 우측 정렬

# 결과
abc
   abc
      abc

출처

  1. https://programmers.co.kr/learn/courses/4008/lessons/12728
profile
I'm interested in processing video&images with deeplearning and solving problem in our lives.

0개의 댓글