Disguiser 发表于 2022-5-11 16:41:04

我想写一个多线程可以让某些值自增

我想如果我写线程,开十个线程拿到的以下代码for qqq in range(607,1415):中的值都是一样的,那样我开不开线程的意义就不大了,我需要让第一个拿到这个线程的线程传入两个值来代替这个for中的两个值,我应该如何去做

#!/usr/bin/python
# -*- coding: utf-8 -*-
import json
from lxml import etree
import requests
import time
import xlwt
import datetime
import re

for qqq in range(607,1415):
    nows = datetime.datetime.now()
    print(str(qqq), '-----', str(nows.strftime("%H.%M")))
    params = {
      'pageindex': qqq,
      'pagesize': '1',
      'corpname': '',
      'corpcode': '',
      'sfswqy': '0',
      'certtypenum': '2',
      'danweitype': ''
    }
    head_link = 'http://hbjz.hbcic.net.cn/hbythqy/szjs_ythpt/frame/workportal/djgcompanyinfotempaction_yth.action?cmd=getCorpInfoList'
    try:
      response = requests.post(url=head_link, params=params,timeout=50)
    except (requests.exceptions.RequestException, ValueError):
      response = requests.post(url=head_link, params=params,timeout=50)
    s = response.text.encode('GB18030').decode('unicode_escape')
    # 如果是json的话,转化为json
    json1 = json.loads(s, strict=False)
    results = json1.get('custom')
    resultss = results.get('list')
    for i in resultss:
      danweiname = i.get('danweiname')
      farenname = i.get('farenname')
      dwtypename = i.get('dwtypename')
      qyrowguid = i.get('qyrowguid')
      socialcode = i.get('socialcode')

非常感谢{:10_288:}
{:10_281:} {:10_281:} {:10_281:}{:10_281:}{:10_281:}{:10_281:}{:10_281:}{:10_281:}






ba21 发表于 2022-5-11 22:07:47

假设你开10个线程。
那么你先把 for qqq in range(607,1415) 里面的数据分10份,然后分给每个线程进行处理不就行了。

Disguiser 发表于 2022-5-12 09:07:50

ba21 发表于 2022-5-11 22:07
假设你开10个线程。
那么你先把 for qqq in range(607,1415) 里面的数据分10份,然后分给每个线程进行处理 ...

不理解{:10_263:}
麻烦详细说一说{:10_293:}

Disguiser 发表于 2022-5-16 09:59:39

没有朋友可以解释一下嘛~~
页: [1]
查看完整版本: 我想写一个多线程可以让某些值自增