import requests from bs4 import BeautifulSoup url="https://www.ptt.cc/bbs/NBA/index.html" def get_NBA(url): r = requests.get(url) sp = BeautifulSoup(r.text ...
確定! 回上一頁