TypeError: python 및 CSV에서 'str'이 아닌 바이트와 유사한 개체가 필요합니다. TypeError: 'str'이 아닌 바이트와 유사한 개체가 필요합니다. HTML 테이블 데이터를 CSV 파일에 저장하기 위해 아래 python 코드를 실행하는 동안 위의 오류가 발생하였습니다.어떻게 올라타야 할지 모르겠어요.제발 도와주세요. import csv import requests from bs4 import BeautifulSoup url='http://www.mapsofindia.com/districts-india/' response=requests.get(url) html=response.content soup=BeautifulSoup(html,'html.parser') table=soup...