python2.X与Python3.x版本介绍目前市场上有两个Python的版本并存在,分别是Python2.x和Python3.x新的Python程序建议使用Python3.0版本的语法Python2.x是过去的版本解释器名称是Python3相对于Python的早期版本,这是一个较大的升级为了不带 ...
分类:
编程语言 时间:
2021-06-05 17:48:30
阅读次数:
0
https://docs.python.org/3/library/multiprocessing.html?highlight=imap_unordered#multiprocessing.pool.Pool.imap_unordered 注意,worker函数不能写在其他函数内部: def fu ...
分类:
编程语言 时间:
2021-06-04 19:54:54
阅读次数:
0
元组 只读列表(没有增删改,只能读),可以存储大量的数据,可以索引,切片(步长) 经常用于一些不想被别人改动的数据,元组里的元素如果有列表,列表里的元素可以被修改 元组的拆包,分别赋值 元组拆包赋值 a,b=(1,2) #必须与之对应多一个少一个都不行 print(a,b) 元组补充 当元组中只有一 ...
分类:
其他好文 时间:
2021-06-04 18:44:02
阅读次数:
0
介绍两种pip使用方式: 方式一 下载第三方包到本地: python -m pip download pyproj==2.4.2.post1 -d "D:\software installation package\python安装\包" --trusted-host pypi.douban.com ...
分类:
其他好文 时间:
2021-06-03 18:03:11
阅读次数:
0
bit_manipulation 二进制位操作 binary_and(a: int, b: int) → str 整数二进制 and 操作 对两个整形参数,先转换成二进制,对2个二进制数据进行 and 与操作,返回 二进制字符制 binary_or(a: int, b: int) → str or ...
分类:
其他好文 时间:
2021-06-03 17:54:32
阅读次数:
0
一。运行命令 在项目的终端可以使用如下命令,操作项目python python manage.py runserver # 启动flask 服务python manage.py db init # 只有第一次迁移时,才会执行 该命令, 执行完,会生成迁移文件python manage.py db m ...
分类:
其他好文 时间:
2021-06-02 20:06:28
阅读次数:
0
第一轮刷题解法: 1)如果长度为1,返回第一个字符串;如果存在空,返回空;否则长度递增,逐一比较,有不同则返回当前前缀。 class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: count_prefix = 1 i ...
分类:
编程语言 时间:
2021-06-02 19:01:16
阅读次数:
0
使用Python对word文档进行操作 一、安装Python-docx Python-docx是专门针对于word文档的一个模块,只能读取docx 不能读取doc文件。说白了,python就相当于windows操作系统,QQ就是跑在windows操作系统上的软件,QQ最大的作用是可以去聊天,说话。 ...
分类:
其他好文 时间:
2021-06-02 18:48:27
阅读次数:
0
def my_decorator(txt=None): # 如果txt是str或int,则txt为带参修饰器 if isinstance(txt, (str, int)): def decorator(func): @wraps(func) def wrapper1(*args, **kwargs) ...
分类:
编程语言 时间:
2021-06-02 18:45:16
阅读次数:
0
class StudentDoc: def __init__(self,student_number,name,major,score): self._student_number=student_number self._name=name self._major=major self._scor ...
分类:
其他好文 时间:
2021-06-02 18:02:42
阅读次数:
0