1.直接按 win+R 輸入cmd 2.或者點左下角的開始-->搜尋cmd-->右鍵-->以系統管理員身分開啟 然後輸入 net user administrator /active:yes 就可以啟動administrator帳號 反之 要關掉就打 net user administrator /active:no 即可
lmgtfy 是Let me google that for you(讓我幫你google吧) 就是諷刺那些很容易google得到的東西 卻偏偏又要發問的人 雖然叫Let me google that for you 但是還是有很多搜尋引擎可供選擇 Search type :依照你選擇的搜尋引擎 會有增減選項 如果是選google 就有google圖片等等可以選 Include Internet Explainer:勾選這個會在多出一個動畫 還蠻嘴的XD 最下方有語言可供選擇 但中文目前只有簡體版本
import requests from bs4 import BeautifulSoup page = int(input("請輸入要擷取的頁數")) for i in range(1,page+1): res = requests.get("https://www.mobile01.com/forumtopic.php?c=17&p="+ str(i)) soup = BeautifulSoup(res.text,"html.parser") for title in soup.select(".topic_gen"): print ("==============") url = str(title.get('href')) print ("[標題]:"+title.text,"\n"+"https://www.mobile01.com/"+url)