간격을 지정하고 문자열을 정렬할 수 있다.
s = 'cba'
n = 7
print(s.ljust(n))
print(s.center(n))
print(s.rjust(n))
모든 알파벳
숫자 0을 입력하면, 영문 소문자 알파벳 숫자 1을 입력하면, 영문 대문자 알파벳을 사전 순으로 출력
flag = 0
if flag == 0:
s = s.lower()
else:
s = s.upper()
ls = list(s)
ls = sorted(ls)
print(sorted(ls))
s = ''.join(ls)
print(s)
파이썬에서 모든 알파벳, 숫자들이 미리 정의되어 있다.
알파벳 출력하기
import string
string.ascii_lowercase # 소문자 abcdefghijklmnopqrstuvwxyz
string.ascii_uppercase # 대문자 ABCDEFGHIJKLMNOPQRSTUVWXYZ
string.ascii_letters #대소문자 모두 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
string.digits # 숫자 0123456789
728x90
'일상 > Today I Learn(TIL)' 카테고리의 다른 글
2019-09-30 TIL 파이썬을 파이썬답게 (0) | 2019.09.30 |
---|---|
2019-09-23 TIL Iterable 다루기 (0) | 2019.09.23 |
2019-09-20 TIL 파이썬으로 진법변환 (0) | 2019.09.20 |
2019-09-19 TIL 파이썬을 파이썬답게 (0) | 2019.09.19 |
2019-08-20 TIL 머신러닝 선형회귀 (0) | 2019.08.20 |