>>> _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))
'안녕세세요'
>>>
How to use str.maketrans() & translate
|
2019.09.25 01:40:56
|
2019.09.25 01:48:43
|
558
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2020.02.01
2020.01.24
2020.01.18
2020.01.17
2020.01.12
2019.09.25
2019.09.24
2019.09.16
2019.09.14
2019.09.03