python中的数字类型 intfloatfractions.fractiondecimal.decimal […]
Continue reading月份:2016年6月
python数据结构——栈、队列的实现(一)
1. 栈 栈(stack)是限制插入和删除操作只能在一个位置进行的表,该位置是表的末端,称为栈的顶(top)。 […]
Continue readingpython数据结构——栈、队列的实现(二)
1. 一个列表实现两个栈 class twostacks(object): def __init__(self […]
Continue readingpython异常记录
1.常用异常名 attributeerror 调用不存在的方法引发的异常。 eoferror 遇到文件末尾引发 […]
Continue readingc/c++中嵌入python
在c/c++中嵌入python也比较简单,首先需要在vc中添加python的include文件目录和lib文件 […]
Continue readingpython模块学习hashlib
一、hashlib概述 涉及加密服务:14. cryptographic services 其中 hashli […]
Continue readingpython模块学习logging
1.简单的将日志打印到屏幕 import logginglogging.debug(‘this i […]
Continue readingeclipse配置python
python安装成功后,即要配置开发环境,这里选用eclipse, 在eclipse中安装pydev插件,有多 […]
Continue readingpythonwebsocket实现扫码二维码登录
最近在做一个扫码登录功能,为此我还在网上搜了一下关于微信的扫描登录的实现方式。当这个功能完成了后,我决定将整个 […]
Continue readingpython字符串连接的n种方式总结
python中有很多字符串连接方式,今天在写代码,顺便总结一下: 最原始的字符串连接方式:str1 + str […]
Continue readingpython字符串操作方法大全
1、去空格及特殊符号 代码如下: s.strip().lstrip().rstrip(‘,R […]
Continue readingpython实现文件夹同步
定义syndirtool类,用于同步两个文件夹的内容,从/usr/local/a文件夹到/usr/local/ […]
Continue readingpython二分法查找
下面是一段用python实现的二分法查找代码 #encoding=utf-8 import sys def s […]
Continue readingsirius的python学习笔记(1)
1、可以通过try…except语句来简单的判断字符串是否为整数值,如例程 x = raw_inp […]
Continue reading怒学python——第二篇——类型与运算
python支持5种数据类型,包括数字(numbers)、字符串(string)、列表(list)、元组(tu […]
Continue reading