2 - Program Language
文章平均质量分 51
汐雪池间
计算机科学与技术 -> 数据科学与工程 -> 大数据工程师
展开
-
Python 正则表达式——re.sub 不完全替换
利用 re.sub 将字符串中的 [单词]~[单词] 替换为 [单词]-[单词]I am 20~Year Old~ 变为 I am 20-Year Old~原创 2019-09-11 21:30:17 · 692 阅读 · 0 评论 -
Scala 保留字(关键字)解读——未完待续
Scala 太 sao 啦,在学习关键字的时候就感受到了!Scala 关键字下表列出了 scala 保留关键字,我们不能使用以下关键字作为变量:abstract case catch class def do else extends false final finally for forSome if im...原创 2019-01-02 21:52:53 · 802 阅读 · 0 评论 -
Python 多线层协调应用举例
1. threading.Event 机制应用2. threading.Lock 防止子线层打印出错3. 再次遇到在python2.7中,中文字符串作为形参传递时出现的问题并解决。# coding:utf-8from __future__ import unicode_literalsimport threadingimport time# " 妈妈做饭,我弟吃,原创 2017-09-08 11:14:53 · 292 阅读 · 0 评论 -
C++ Primer Plus Chapter 3 Dealing with Data
C++ 读书笔记(似乎没必要记)原创 2017-08-09 19:08:15 · 371 阅读 · 0 评论 -
Python 方法中的参数传递
Python 方法中的参数传递Python 中的对象,可以用可变和不可变的标准来一分为二:可变对象有:list、dictionary、set等容器。当此类对象的内容发生变化时,变量的对象引用是不会变化的。不可变对象有:字符串、数字类型数据、元组等。Python中的变量存放的是对象引用,所以对于不可变对象而言,尽管对象本身不可变,但变量的对象引用是可变的。在将可变对象作为参数进行传递时,需要特别原创 2017-05-26 22:39:00 · 452 阅读 · 0 评论 -
Multithread download tool for massive tiny files.
""" Multithread download tool for massive tiny files."""原创 2017-03-16 17:53:33 · 552 阅读 · 0 评论 -
Python 分块多线程下载器
python 分块多线程下载器将通过 HTTP 协议传输的文件进行分块,并用多线程下载,充分利用本地带宽。* 只需要 python 2.7 , 不需要三方库。* 每个线程对应一个 http 连接* max_block_size 越大内存占用越大,影响数据能否尽早写入磁盘而不是停留在内存里。单个下载块太大会出 **MemoryError*** 经过测试:压缩文件,视频文件,音频文件没问题,原创 2017-04-07 16:25:43 · 2378 阅读 · 0 评论 -
Scripts to manage files
Here are several Scripts to manage files in python.原创 2017-03-31 16:29:12 · 366 阅读 · 0 评论 -
[Crawler] Get the real file link of BaiduYun shared by user with Chrome
Get the real file link of BaiduYun shared by user.with Python 2.7 + Selenium + Chrome百度网盘直链获取原创 2017-03-10 17:14:31 · 713 阅读 · 0 评论 -
Get one available local port on windows and Linux
# coding=utf-8""" Get available local port"""import osimport randomdef getPort(times=0): availabel_local_ports = [] tt = random.randint(15000,20000) if times <= 0: # windows原创 2017-03-06 17:13:19 · 246 阅读 · 0 评论 -
Install and cofigure Scrapy under Centos7
How to set up the environment for Scrapy on Centos 7 for a new centos.思路通用于所有常见操作系统,解决令人烦恼的 python 包版本依赖问题。原创 2017-03-01 16:39:09 · 321 阅读 · 0 评论 -
Python OOP Practice
Practice of OOP in python.原创 2017-03-06 12:28:35 · 245 阅读 · 0 评论