2019年2月22日
摘要: 第一种方法: 第二种方法: 阅读全文
posted @ 2019-02-22 15:03 mentiantian 阅读(822) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2019/2/15/015 15:15 import os class BatchRename(): ''' 批量重命名文件夹中的图片文件 ''' def __init__(self): self.path = r'C:\Users... 阅读全文
posted @ 2019-02-22 14:50 mentiantian 阅读(1637) 评论(0) 推荐(0) 编辑
摘要: 方式一: os.fork() pid=os.fork() 1.只用在Unix系统中有效,Windows系统中无效 2.fork函数调用一次,返回两次:在父进程中返回值为子进程id,在子进程中返回值为0 方式二: 使用multiprocessing模块: 创建Process的实例,传入任务执行函数作为 阅读全文
posted @ 2019-02-22 13:53 mentiantian 阅读(675) 评论(0) 推荐(0) 编辑