우노
[Python] Int를 Char로 변환 / Char를 Int로 변환 본문
예제 코드
# Int를 Char로 변환
print(chr(97)) # a
print(chr(122)) # z
# Char를 Int로 변환
print(ord('a')) # 97
print(ord('z')) # 122
'Language > Python' 카테고리의 다른 글
[Python] Pandas DataFrame으로 SQL 사용하기 (0) | 2022.11.01 |
---|---|
[Python] 문자열 정렬 (0) | 2022.10.03 |
[Python] bisect란? (0) | 2022.09.18 |
[Python] 깊은 복사 (0) | 2022.09.08 |
[Python] itertools란? (0) | 2022.09.06 |
Comments