英文文档: class bytearray([source[, encoding[, errors]]]) r […]
Continue readingpython标准库itertools模块使用方法
简介 官方描述:functional tools for creating and using iterato […]
Continue readingpython内置bool函数详细介绍
英文文档: class bool([x]) return a boolean value, i.e. one […]
Continue readingpython内置bin函数详细介绍
英文文档: bin(x) convert an integer number to a binary stri […]
Continue readingpython内置ascii函数详细介绍
英文文档: ascii(object) as repr(), return a string containi […]
Continue readingpython内置any函数详细介绍
英文文档: any(iterable) return true if any element of the i […]
Continue readingpython内置all函数详细介绍
英文文档: all(iterable) return true if all elements of the […]
Continue readingpythoncumsums和cumprod函数使用方法
这篇文章详解python cumsums和cumprod函数使用方法 >>>a = np.array([1,2 […]
Continue readingpythonsqlite3以字典形式返回查询结果方法介绍
sqlite3本身并没有像pymysql一样原生提供字典形式的游标。 cursor = conn.cursor […]
Continue reading详解python异常处理方法
异常 异常(exception)是因为程序的例外、违例、出错等情况而在正常控制流以外采取的行为,一般分为如下两 […]
Continue readingpython文件操作的方法介绍
文件操作1.open()函数 open()函数主要用于文件处理,一般分为下面3个过程: 1.打开文件 2.操作 […]
Continue readingpython中enumerate()函数的使用方法
在python中处理各类序列时,如果我们想显示出这个序列的元素以及它们的下标,可以使用enumerate()函 […]
Continue readingpython2.x默认编码问题解决方法
python2.x中处理中文,是一件头疼的事情。网上写这方面的文章,测次不齐,而且都会有点错误,所以在这里打算 […]
Continue readingpython字符串输入输出的详细介绍
字符串输入 python用到的输入一般有两种方式,input() 和 raw_input() ,区别是,前者只 […]
Continue readingpython函数和常用模块的详细介绍
递归 反射 os模块 sys模块 hashlib加密模块 正则表达式 反射 python中的反射功能是由以下四 […]
Continue reading