from bs4 import BeautifulSoup with open("index.html","r") as file: fcontent=file.read() sp=BeautifulSoup(fcontent,'lxml') ...
確定! 回上一頁