"import requestsfrom bs4 import BeautifulSoup# 사이트 URL을 입력합니다.url = "https://namu.wiki/w/Official%E9%AB%AD%E7%94%B7dism?from=Official%20HIGE%20DANdism"# 사이트의 HTML을 가져옵니다.response = requests.get(url)html = response.content# BeautifulSoup으로 HTML을 분석합니다.soup = BeautifulSoup(html, "html.parser")# 일본어 텍스트를 추출합니다.japanese_text = soup.find_all(string=lambda text: text.strip() and text.startswith("ja"))


# 일본어 텍스트를 출력합니다.
for text in japanese_text:
print(text)



이 코드에 뭔 오류가 있는 걸까요