0
我是新來的Python + Tkinter的將數據插入到For循環文本組件,Tkinter的python3
我試圖用FOR循環
的問題是值輸入到一個文本組件,文本組件不在For循環執行期間顯示任何內容當for循環結束時,它顯示所有值。
如何在for循環中顯示插入的值。
見的代碼
for item in liList:
listDict = {}
# get a tag href
listATag = item.find_all("a", attrs={"class": "product-image"})[0]
listATagHref = listATag['href']
listDict["purchaseLink"] = listATagHref
imgPageRequest = requests.get(listATagHref)
imgPageData = imgPageRequest.text
imgPageSoup = BeautifulSoup(imgPageData, 'lxml')
try:
productImgDiv = imgPageSoup.find_all('div', attrs={"class": "product-image"})[0]
imgATag = productImgDiv.find_all('a')[0]['href']
largeThumbFileName = (imgATag.split('/')[-1])
tempImgNameList.append(largeThumbFileName)
print(listATagHref)
textBox.insert(END,listATagHref+'\n')
etc...