반응형
>>> t = (('테스트',100),('한글',200))
>>> t
(('\xed\x85\x8c\xec\x8a\xa4\xed\x8a\xb8', 100), ('\xed\x95\x9c\xea\xb8\x80', 200))
>>> print t
(('\xed\x85\x8c\xec\x8a\xa4\xed\x8a\xb8', 100), ('\xed\x95\x9c\xea\xb8\x80', 200))
>>> print repr(t).decode('string-escape')
(('테스트', 100), ('한글', 200))
'Coding > Python' 카테고리의 다른 글
파이썬으로 슬랙봇 만들기 (0) | 2017.03.02 |
---|---|
파이썬에서 엑셀다루기 (0) | 2017.01.07 |
multiprocessing 간 전역변수 공유 (0) | 2016.12.07 |
파이썬 multiprocessing (0) | 2016.12.05 |
ascii' codec can't decode byte 0xed in position 0: ordinal not in range(128) 에러 (0) | 2016.12.05 |