iT邦幫忙

wrxue 的所有最佳解答 39

YOLOv4只顯示一類檢測結果

單純使用 darknet detector test 無法達到您想要的效果,但這不意味著需要重新訓練,只需要另外寫 Python 程式,可參考我之前做的 YOL...

2021-07-01 ‧ 由 h402272000 提問

爬蟲: 排除特定文字底下的所有標籤

應該就判斷結尾到了沒,到了就不要迴圈就好了吧 endText = '延伸閱讀》' for tag in soup.select('div.article p,...

2021-06-25 ‧ 由 聰明貓 提問

爬蟲: 如何在同一個標籤內對<br>之間含特定文字的內容做排除?

soup.select('dd.normal.first-thread div.user-comment-block')拿到的是整個文章了,所以你用 tag.g...

2021-06-09 ‧ 由 聰明貓 提問

#python 如何用遞迴函數 畫出等腰三角形

def tri(num): if num == 0: return tri(num - 1) print(' * ' *...

2021-06-05 ‧ 由 jeff5364628 提問

爬蟲: 使用排除標籤的語法,執行結果和預期不符

section#firstSingle div.post-content-container h2 strong:not(:last-of-type) 應該為...

2021-05-31 ‧ 由 聰明貓 提問

爬蟲: 如何去除含有特定文字的標籤

excepts = ['▲', '▼', '或其他想排除的文字'] for tag in soup.select('div.caas-body p'):...

2021-05-27 ‧ 由 聰明貓 提問

MVC 使用 Bootstrap 套版

我看你有三個Project,我猜你現在正在運行的應該是MVClogin 而不是你認為的MvcBootstrap當然就無法找到路徑(404)在solution上按...

2021-05-14 ‧ 由 新手上路 提問

爬蟲scrapy在指定的目標tag中,從第二個開始抓取內容

css 解法 res.select('div.story p:not(:first-of-type)') 如果 css 你不熟,那就用 if,這方法應該最基...

2021-05-07 ‧ 由 聰明貓 提問

爬蟲scrapy抓取乾淨tag(裡面不要有其他tag或其他東西)的內容文字

for content in bsObj.select('div.caas-body p'): # 看底下有沒有其他 tag children...

2021-05-06 ‧ 由 聰明貓 提問