Python - 문자열 앞(뒤)에 0으로 채우기

문자열의 앞, 뒤에 0으로 패딩을 추가하는 방법에 대해서 알아보겠습니다.

1. 문자열 앞을 0으로 채우기

str.rjust(len, padding)은 len 크기 만큼 문자열 길이를 할당하고, 문자열 str을 오른쪽에 배치하고 나머지는 padding으로 채웁니다.

rjust()를 이용하여 아래와 같이 문자열 앞에 0으로 채울 수 있습니다.

str = 'ABC'
padding = '0'
len = 6

result = str.rjust(len, padding)
print(result)

Output:

000ABC

0대신 다른 문자로 채우려면 'padding' 값을 변경하시면 됩니다.

zfill()을 이용한 방법

str.zfill()은 문자열을 len 만큼 할당하고 오른쪽을 str로 배치하고 나머지는 0으로 채웁니다.

아래와 같이 문자열 앞을 0으로 채울 수 있습니다.

str = 'ABC'
len = 6

result = str.zfill(len)
print(result)

Output:

000ABC

f-string을 이용한 방법

f-string을 이용하여 아래와 같이 특정 길이만큼 문자열 앞을 0으로 채울 수 있습니다. f'str:Padding>Len' 포맷은 f-string에서 지원하는 포맷이라고 이해하시고 쓰시면 됩니다.

str = 'ABC'
padding = '0'
len = 6

result = f'{str:{padding}>{len}}'  # result = f'{str:0>6}'
print(result)

Output:

000ABC

2. 문자열 뒤를 0으로 채우기

ljust()rjust()와 거의 동일하지만, 차이점은 오른쪽에 padding을 추가합니다.

아래와 같이 특정 길이의 문자열을 만들고, 문자열 뒤쪽을 0으로 채울 수 있습니다.

str = 'ABC'
padding = '0'
len = 6

result = str.ljust(len, padding)
print(result)

Output:

ABC000

f-string을 이용한 방법

f-string을 이용하여 아래와 같이 특정 길이만큼 문자열 뒤를 0으로 채울 수 있습니다.

str = 'ABC'
padding = '0'
len = 6

result = f'{str:{padding}<{len}}'  # result = f'{str:0<6}'
print(result)

Output:

ABC000
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha