摘要: # -*- coding: utf-8 -*-# # # Name: 单链表测试 # Author: yunhgu # Date: 2022/3/10 15:48 # Description: # class Node(object): """链表的结点""" def __init__(self, 阅读全文
posted @ 2022-03-10 15:59 不能说的秘密 阅读(125) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# # # Name: m3u8下载器 # Author: yunhgu # Date: 2022/3/4 9:35 # Description: # from concurrent.futures import ThreadPoolExecutor, 阅读全文
posted @ 2022-03-10 15:20 不能说的秘密 阅读(810) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# # # Name: 资源打包 # Author: yunhgu # Date: 2022/3/10 15:07 # Description: # import os import sys def resource_path(relative_path 阅读全文
posted @ 2022-03-10 15:14 不能说的秘密 阅读(182) 评论(0) 推荐(0) 编辑
摘要: numba 编译型语言和解释型语言 首先了解一下编译型语言和解释型语言(也经常叫脚本语言): 1、编译型语言,C、C++、Fortran、Pascal、Ada,由编译型语言编写的源程序需要经过编译,汇编和链接才能输出目标代码,然后由机器执行目标代码。目标代码是由机器指令组成,不能独立运行,因为源程序 阅读全文
posted @ 2022-03-10 10:34 不能说的秘密 阅读(125) 评论(0) 推荐(0) 编辑