编码新手,试图用python写蜘蛛。
我收到一个未定义变量的错误。
我已经在代码中定义了它。声明为全局。
import requests
from bs4 import BeautifulSoup
def get_products():
headers = {
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3',
'accept-encoding':'gzip, deflate, br',
'accept-language':'zh-CN,zh;q=0.9'
}
for i in range(0,10):
link = 'https://shopee.sg/miniso_singapore?page='+ str(i)
r = requests.get(link, headers=headers)
soup = BeautifulSoup(r.text, "lxml")
global name,price,soldnum
product_list=soup.find_all("div",class_="shop-search-result-view__item col-xs-2-4")
for each in product_list:
name = each.find("div",class_="_1NoI8__2gr36I")
name=name.text
price = each.find("span",class_="_341bF0")
price=price.text
soldnum=each.find("div",class_="_18SLBt")
soldnum=price.text
print(name,price,soldnum)
get_products()
答案 0 :(得分:0)
第一个global variables are evil。因此,您应该尽量不要使用globals
关键字。
在python中,您可以通过为变量分配值来定义变量。例如
variable_x = 10
您不能说此变量存在,但不能像其他编程语言一样为它赋值。
您的问题是,您只为for循环中的变量分配了一个值,但是如果您从不输入该值,则不会分配任何值。
我认为您必须在for循环中添加打印内容。
for product in product_list:
name = product.find("div",class_="_1NoI8__2gr36I")
name=name.text
price = product.find("span",class_="_341bF0")
price=price.text
soldnum=product.find("div",class_="_18SLBt")
soldnum=price.text
print(name, price, soldnum)