from bs4 import BeautifulSoup html = ''' <p>hogefuga</p> ''' soup = BeautifulSoup(html, 'html.parser') text = soup.find('p').string
確定! 回上一頁