摘要: 一、参考出处 参考链接:https://docs.python.org/3/library/threading.html#module-threading 二、threading模块介绍 1)threading模块通过 Thread 创建线程 方式一: #方式一 from threading imp 阅读全文
posted @ 2018-12-05 15:03 Soul>>null 阅读(232) 评论(0) 推荐(0) 编辑
摘要: grep 过滤来自一个文件或标准输入匹配模式内容。 除了grep外,还有egrep、fgrep。egrep是grep的扩展,相当于grep -E。fgrep相当于grep -f,用的少。 Usage: grep [OPTION]... PATTERN [FILE]... 支持的正则 描述 输出控制 阅读全文
posted @ 2018-12-05 11:41 Soul>>null 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 一、Python Multiprocessing 功能介绍 multiprocessing模块的功能众多:支持子进程、通信和共享数据、执行不同形式的同步,提供了Process、Queue、Pipe、Lock等组件。 1、Multiprocessing .Process类的介绍 参数介绍 方法介绍: 阅读全文
posted @ 2018-12-03 16:47 Soul>>null 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 一、Linux 下进程间通讯方式 1)管道(Pipe)及有名管道(named pipe): 管道可用于具有亲缘关系进程间的通信,有名管道克服了管道没有名字的限制,因此,除具有管道所具有的功能外,它还允许无亲缘关系进程间的通信; 2)无名信号量(semaphore)级有名信号量(named semap 阅读全文
posted @ 2018-12-03 14:10 Soul>>null 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 一、Python基础篇(80题) 1、你为什么学习Python? 2、通过什么途径学习的Python? 3、Python和Java、PHP、C、C#、C++等其他语言的对比? 4、简述解释型和编译型编程语言? 5、Python解释器种类以及特点? 6、位和字节的关系? 7、b、B、KB、MB、GB 阅读全文
posted @ 2018-11-28 14:32 Soul>>null 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 一、参考链接 1、源码包下载·链接: https://pypi.org/search/?q=multiprocessing+ 2、源码包 链接:https://pan.baidu.com/s/1jFZVcoJgCwZNwVcjhauXyQ 提取码:kfm9 3、参考出处 链接: https://bl 阅读全文
posted @ 2018-11-28 10:11 Soul>>null 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 一、安装及参考说明 1、51 testing 链接:http://www.51testing.com/zhuanti/LoadRunner.html 2、官网链接:http://learnloadrunner.com/ 阅读全文
posted @ 2018-11-28 08:50 Soul>>null 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 一、IO流类图结构 二、字节流 1、输入字节流 InputStream OutputStream 是所有的输出字节流的父类,它是一个抽象类。 ByteArrayInputStream、StringBufferInputStream、FileInputStream 是三种基本的介质流,它们分别从Byt 阅读全文
posted @ 2018-11-06 14:19 Soul>>null 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 一、参考及安装包链接 链接参考:https://blog.csdn.net/pucao_cug/article/details/71698903 软件包地址:https://pan.baidu.com/s/1pYr3cKtbksa6iwI3RARMeQ 官网文档地址:http://hadoop.ap 阅读全文
posted @ 2018-11-01 11:25 Soul>>null 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 一、环境安装 windows:pip install numpy scipy matplotlib #pip install http://effbot.org/downloads/Imaging-1.1.7.tar.gzpip install pillowpip install requests 阅读全文
posted @ 2018-07-23 15:54 Soul>>null 阅读(220) 评论(0) 推荐(0) 编辑