
Python
Fay的博客
只是一个菜鸟
展开
-
python内置函数记录
一. 简介 python内置了一系列的常用函数,以便于我们使用,python英文官方文档详细说明:点击查看, 为了方便查看,将内置函数的总结记录下来。 二. 使用说明 以下是Python3版本所有的内置函数:1. abs() 获取绝对值12345678转载 2016-10-29 22:20:58 · 2388 阅读 · 0 评论 -
python的模块
0.1. 关于本书0.2. 代码约定0.3. 关于例子0.4. 如何联系我们核心模块1.1. 介绍1.2. _ _builtin_ _ 模块1.3. exceptions 模块1.4. os 模块1.5. os.path 模块1.6. stat 模块1.7. string 模块1.8. re 模块1.9. math 模块1.10. cmath 模块1.11. operator 模块转载 2016-11-20 00:01:29 · 4687 阅读 · 0 评论 -
python异常一览
python提供了两个非常重要的功能来处理python程序在运行中出现的异常和错误。你可以使用该功能来调试python程序。1.异常处理: 本站Python教程会具体介绍。2.断言(Assertions):本站Python教程会具体介绍。python标准异常异常名称描述BaseException所有异常的基类转载 2016-11-22 22:42:10 · 1462 阅读 · 0 评论 -
cookie属性和方法详解
cookie属性详解转载 2017-09-18 23:48:23 · 1228 阅读 · 0 评论 -
安装Scrapy的坑之Twisted
安装:pip instatll Twisted-17.9.0-cp36-cp36m-win_amd64.whl错误:Twisted-17.9.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.解决方法:修改包名更改为:Twisted-17.9.0-cp36-none-win32.whl...转载 2018-08-29 22:09:49 · 675 阅读 · 1 评论