1. 에러 원인 non-breaking space 로 Latin1, chr(160) 인코딩 형에서 나타나는 것 같다 2. 해결 방법 space 로 치환을 해주어야 한다. 코드는 아래대로 치면 된다 string = string.replace(u'\xa0', u' ') 나의 경우에는 위 방법으로 해결했지만, 아래 링크는 다양한 방법이 있으니, 나중에 해결이 안될 경우 참고해야겠다. 3. 참고링크 stackoverflow.com/questions/10993612/how-to-remove-xa0-from-string-in-python How to remove \xa0 from string in Python? I am currently using Beautiful Soup to parse an HTML file ..