TypeError: can only concatenate str (not "int") to str解决方式

使用format函数解决问题

    for page in range(1,pagebox+1):
        url = "https://www.dd373.com/s/rbg22w-x9kjbs-wwf11b-0-0-0-qquvn4-0-0-0-0-0-0-0-"+format(page)+".html?" + urlencode(data)
        try:
            page1 = page_currentpage(url)
            if page1==page:
                response = requests.get(url, headers=headers)
                if response.status_code == 200:
                    doc_page(response.text)
        except RequestException:
            print("链接错误", url)

  

相关文章:

  • 2022-12-23
  • 2021-12-26
  • 2021-11-28
  • 2021-05-14
  • 2022-12-23
  • 2021-07-08
  • 2021-09-25
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案