Python数据分析的过程记录

Posted hhh_Moon_hhh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python数据分析的过程记录相关的知识,希望对你有一定的参考价值。

Python数据分析的过程记录(七)

直接上代码,
因为这个是跟着前面的,
这次呢,
只不过是多了一些天数而已了啦。

只写部分代码,

不然通过不了!!!!

Python数据分析的过程记录(七)



list_of_the_dates = []
for i in range(31):
    list_of_the_dates.append(f"5-{i + 1}")
for i in range(30):
    list_of_the_dates.append(f"6-{i + 1}")
for i in range(31):
    list_of_the_dates.append(f"7-{i + 1}")
list_of_the_dates.append("8-01")
list_of_the_dates.append("8-02")
list_of_the_dates.append("8-03")
list_of_the_dates.append("8-04")
list_of_the_dates.append("8-05")
list_of_the_dates.append("8-06")
# list_of_the_dates.append("8-07")
excel_position = 1


for date in list_of_the_dates:

    url = f'https://api.api68.com/pks/getPksHistoryList.do?lotCode=10037&date=2021-0{date}'
    headers = {
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.70'
    }
    res0 = json.loads(requests.get(url, headers=headers).content.decode())["result"]["data"]
    print(res0)
    n = 0
    # 命中的次数
    recording_number = 1
    number_dict = {}
    time_dict = {}

    list_of_the_taboo_table = range(817, 864, 1)
    # taboo !!!

    for i in range(1152):
        k = 1151 - i
        if (k != 1151) and (k not in list_of_the_taboo_table):
            data1 = res0[k + 1]
            # 前一个
            dada2 = res0[k]
            # 当前的

			pass
			



最后也就是这个表格了啦。

这个也是接单的一个案例的代码,

放在这里以供参考。

以上是关于Python数据分析的过程记录的主要内容,如果未能解决你的问题,请参考以下文章

Python数据分析的过程记录

Python数据分析的过程记录

python使用上下文对代码片段进行计时,非装饰器

python小白学习记录 多线程爬取ts片段

scrapy主动退出爬虫的代码片段(python3)

Python数据分析的过程记录