Python
From Chaehyun
(Difference between revisions)
(→unicode로 출력된 string 변환) |
(→unicode로 출력된 string 변환) |
||
Line 1: | Line 1: | ||
= unicode로 출력된 string 변환 = | = unicode로 출력된 string 변환 = | ||
* print word.decode('unicode_escape') | * print word.decode('unicode_escape') | ||
+ | |||
+ | = beautifulsoup 사용할 때 = | ||
+ | * encoding 을 알고 있을 때 깔끔하게 정리하기 | ||
+ | * unicode_html = myfile.read().decode('utf-8', 'ignore') | ||
+ | * soup = BeautifulSoup (unicode_html) |
Revision as of 14:48, 3 October 2012
unicode로 출력된 string 변환
- print word.decode('unicode_escape')
beautifulsoup 사용할 때
- encoding 을 알고 있을 때 깔끔하게 정리하기
- unicode_html = myfile.read().decode('utf-8', 'ignore')
- soup = BeautifulSoup (unicode_html)