계속 추가해나갈 예정 2진수, 8진수, 16진수 표현 / 변환: hex(), int(string, 16), format https://www.daleseo.com/python-int-bases/ 아스키 코드 / ord(): string to ascii, chr(): ascii to string https://lsjsj92.tistory.com/201 리스트 내 each element에 여러 개의 인자가 있을 때, i번째 index 기준으로 내림차순/오름차순 정렬하는 식: a.sort(key=lambda x: x[i]) cf) a.sort(key=len): 리스트 내 원소의 길이를 기준으로 정렬함 a[::-1]: a를 reverse한 list a[1::-1]: a[0:1]을 reverse한 list a[:..