>>> _str = str.maketrans("abcdefg", "가나다라마바사")
>>> print(type(_str))
<class 'dict'>
>>> for k, v in _str.items() :
	print(chr(k), chr(v))

	
a 가
b 나
c 다
d 라
e 마
f 바
g 사
>>> 




>>> _str = str.maketrans("abcdefg", "가나다라마바사", "ab")
>>> print(type(_str))
<class 'dict'>
>>> for k, v in _str.items() :
	print(k, v)

	
97 None
98 None
99 45796
100 46972
101 47560
102 48148
103 49324
>>> 


>>> import string
>>> "hello$#%$%^".translate(str.maketrans('hello', '안녕하세요', string.punctuation))
'안녕세세요'
>>>