Pycharm 不会显示结果

问题描述 投票:0回答:0

[在此处输入图片描述][1]Pycharm 没有显示我的代码的结果我一直卡在下面的屏幕上,必须单击停止,然后它显示“进程已完成,退出代码为 1”。

我尝试单击“在输出控制台中选择模拟终端”,但也没有任何改变。

from bs4 import BeautifulSoup
import requests

html_text = requests.get('https://www.homedepot.com/b/Milwaukee/Special-Values/N-5yc1vZ7Zzv').text
soup = BeautifulSoup(html_text, 'lxml')
tool = soup.find('div', class_='browse-search__pod col__12-12 col__6-12--xs col__4-12--sm col__3-12--md '
                               'col__3-12--lg')
product_code = tool.find('div', class_='product-identifier--bd1f5').text.replace(' ', '')
Brand = tool.find('p', class_='product-header__title__brand--bold--4y7oa')
print(product_code)
python pycharm
© www.soinside.com 2019 - 2024. All rights reserved.