自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

忧桑的小兔子

学习的总结,如有错误请大家指正,谢谢- -!...

  • 博客(36)
  • 资源 (8)
  • 收藏
  • 关注

原创 37 Python 正则表达式学习笔记

Python正则表达式使用指南,详细介绍了正则表达式的语法,原生字符,详细介绍了Python中re模块的使用方法,Pattern对象,match对象的使用方法以及测试示例。

2017-01-23 09:44:32 919

原创 36 Python 让你对Python绝望的几个题

面试Python时必问的面试题,包含了详细的题目介绍以及解析。

2017-01-20 19:39:34 2100

原创 35 Python __call__

详细介绍了Python中特殊方法__call__的使用。

2017-01-20 14:57:46 1995

原创 34 Python __new__与__init__区别

详细介绍了Python中__new__的声明,用处,使用实例,注意事项等,还有__new__与__init__的主要区别,利用__new__实现了单例模式。

2017-01-20 14:25:33 990

原创 33 Python 详解命令解析 - argparse

Python 详解命令行解析 - argparsePython 详解命令行解析 - argparsesys.argvwhy choice argparse ?创建解析器 - ArgumentParser添加参数选项 - add_argument解析参数examplesys.argv适合解析简单的命令行filename = arg_sys.py...

2017-01-19 19:09:25 26933 5

转载 1 Python 将word文件转换为PDF文件

利用Python脚本将word转换为pdf。

2017-01-18 17:48:11 15726 4

原创 2 Python 利用socket实现的服务端和客户端

利用Python中socket实现的简单的服务端与客户端。

2017-01-15 21:48:06 734

原创 32 Python 多线程 - threading

介绍了操作系统中的线程,Python中GIL对线程的限制以及Python与多线程。详细介绍了Python中多线程编程模块-threading的使用,其中包括threading中每个类,函数的详细介绍,使用示例等。

2017-01-15 21:35:35 1215

原创 31 Python 多进程-multiprocessing

详细介绍了操作系统中的进程,Python中GIL对线程的限制以及Python与多进程。另外还介绍了Python中多进程编程模块-multiprocessing的使用,其中包括multiprocessing中每个类,函数的详细介绍,使用示例等。

2017-01-15 21:22:13 4749

转载 3 我是一个线程

很经典的一篇关于线程的文章,生动的解释了线程的用处,生命周期,原理等。

2017-01-13 15:25:06 359

转载 进程与线程的一个简单解释

进程与线程的区别。

2017-01-13 10:16:13 222

原创 30 Python 深拷贝和浅拷贝

详细介绍了Python中的深拷贝,浅拷贝以及示例。

2017-01-12 20:39:57 343

原创 29 Python collections的使用

介绍了Python中collections模块的使用以及示例。

2017-01-12 20:31:48 320

原创 2 同步 异步 阻塞 非阻塞

详细介绍了同步,异步,阻塞,非阻塞的概念与区别,以及详细事例。

2017-01-12 20:03:23 415

转载 1 那些年遇到过的面试题 - 40个多线程问题总结

面试中经常碰到的多线程问题。

2017-01-12 18:15:52 10751

原创 28 Python 单元测试和unittest模块

使用Python中的unittest模块进行单元测试的使用示例。

2017-01-10 10:59:31 449

转载 27 Python 代码调试技巧

Python代码调试技巧

2017-01-10 10:54:50 378

原创 81 leetcode - Decode Ways

Decode Ways

2017-01-09 15:06:01 230

原创 80 leetcode - Subsets II

Subsets IIGiven a collection of integers that might contain duplicates, nums, return all possible subsets.

2017-01-09 10:57:55 197

原创 79 leetcode - Merge Sorted Array

leetcode Merge Sorted ArrayGiven two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

2017-01-07 17:11:48 233

原创 78 leetcode - Remove Duplicates from Sorted List

leetcode,Remove Duplicates from Sorted ListGiven a sorted linked list, delete all duplicates such that each element appear only once.

2017-01-06 16:59:14 204

原创 77 leetcode - Remove Duplicates from Sorted List II

Remove Duplicates from Sorted List IIGiven a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.

2017-01-06 16:57:19 278

转载 26 Python 2.x 字符编码终极指南

详细介绍了Python中的编码,解码问题,str与unicode之间的关系,Python隐式编码解码等问题。

2017-01-06 11:40:52 475

原创 76 leetcode - Remove Duplicates from Sorted Array II

leetcode- Remove Duplicates from Sorted Array IIFollow up for "Remove Duplicates":What if duplicates are allowed at most twice?

2017-01-06 11:36:16 232

原创 75 leetcode - Word Search

leetcode Word Search.Given a 2D board and a word, find if the word exists in the grid.

2017-01-05 19:41:49 266

原创 74 leetcode - Sort Colors

leetcode Sort ColorsGiven an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.

2017-01-05 19:39:21 224

原创 73 leetcode - Set Matrix Zeroes

leetcode - Set Matrix Zeroes.Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.

2017-01-05 19:37:27 295

原创 72 leetcode - Sqrt(x)

leetcode Sqrt(x)Implement int sqrt(int x).Compute and return the square root of x.

2017-01-04 22:20:30 213

原创 71 leetcode - Permutation Sequence

Permutation Sequence.The set [1,2,3,…,n] contains a total of n! unique permutations.

2017-01-04 21:33:11 215

原创 70 leetcode - Single Number I,II,III

leetcode中Single Number I,Single Number II,Single Number III.

2017-01-03 10:46:10 273

原创 7.5 Python 安装第三方库

Python 安装第三方模块.

2017-01-01 17:11:29 328

转载 7.4 Python 包

Python中的包

2017-01-01 16:53:20 251

原创 25 Python 包

详细介绍了Python中的包,主要有包的定义,组织,以及包的使用等。还详细介绍了包和模块的导入,主要有绝对路径导入,相对路径导入。

2017-01-01 16:32:01 360

原创 1 - c_call_Python api

介绍了C调用Python时常用的几个API函数。

2017-01-01 13:54:58 1042

原创 69 leetcode - Simplify Path

Simplify PathGiven an absolute path for a file (Unix-style), simplify it.

2017-01-01 11:35:19 226

原创 68 leetcode - Minimum Path Sum

Minimum Path SumGiven a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.

2017-01-01 09:10:59 360

jdk-8u121-linux-x64.tar.gz

适用于ubuntu x64,JDK8,解压版,解压之后配合环境变量即可使用,可参考这篇网址安装,https://www.cnblogs.com/thoughtful-actors/p/10419139.html PS:解压后记得修改bin/java的权限,改为777,默认是没有可执行权限的

2019-05-22

python boto

python中操作s3 包 boto3的使用事例,中文文档。 python中操作s3 包 boto3的使用事例,中文文档。

2018-05-16

PyQt4入门指南 PDF中文版

Python图形化开发中Pyqt4学习文档,详细介绍了PyQt4中每个组件的使用方法以及注意事项,系统的学习Python的图形化开发。

2017-09-23

thrift python example

使用thrift框架的Python事例

2017-06-10

Python源码解析

深入研究Python源码

2016-12-22

Python-Tkinter编程

Python自带模块Tkinter编程

2016-09-29

Python参考手册(第4版)

让你的Python更上一层楼的书籍

2016-09-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除