python异常处理
关键词:python 抛出异常 python3异常处理 python 异常捕获
#!/usr/bin/python
import traceback
try:
1/0
#except Exception,e:
# print traceback.format...
cdadata
9年前 (2016-06-14) 3252℃
0喜欢
python os.path模块
关键词:python os.path python os.path.join python os.path.isdir
os.path.abspath(path) #返回绝对路径
os.path.basename(path) #返回文件名
os....
cdadata
9年前 (2016-06-13) 3397℃
0喜欢
python sys模块详解!
关键词: python sys模块 python sys、python sys模块介绍 python中sys模块 python的sys模块,python中的sys模块,python sys模块路径,python sys模块下载
python sys...
cdadata
9年前 (2016-06-10) 3517℃
0喜欢
深入解析Python编程中JSON模块的使用_python json模块详解
关键词: python json模块,python json模块下载,python json模块安装 python的json模块
这篇文章主要介绍了深入解析Python编程中JSON模块的使用,举例讲解...
cdadata
9年前 (2016-06-10) 3625℃
1喜欢
Python核心模块详解解之os模块_python os模块详解
Python核心模块详解解之os模块
os模块提供了多数操作系统的功能接口函数.当os模块被导入后,它会自适应于不同的操作系统平台,如posix或NT系统平台,os模块会根据不同的平台进行相应的操作.本节内容将对...
cdadata
9年前 (2016-06-08) 3268℃
1喜欢
python 详解re模块
关键词:python re python re模块 正则表达式
正则表达式的元字符有. ^ $ * ? { [ ] | ( )
.表示任意字符
[]用来匹配一个指定的字符类别,所谓的字符类别就是你想匹配的一个字符集,对于字符集中的字符可以理解成或的关系...
cdadata
9年前 (2016-05-31) 2825℃
1喜欢
在Python中添加自定义模块
关键词: python导入自定义模块 python 自定义模块 python调用自定义模块,python如何自定义模块
一般来说,我们会将自己写的python模块与python自带的模块分开存放以达到便于维护的目的。
Python 运行环境在查找库...
cdadata
9年前 (2016-05-29) 3290℃
0喜欢
python:open/文件操作_python open 文件操作
open/文件操作
f=open(‘/tmp/hello’,’w’)
#open(路径+文件名,读写模式)
#读写模式:r只读,r+读写,w新建(会覆盖原有文件),...
cdadata
9年前 (2016-05-28) 3872℃
1喜欢
python模块及包的导入
关键词:python导入自定义模块 python 导入模块 python如何导入模块
一 .module
通常模块为一个文件,直接使用import来导入就好了。可以作为module的文件类型有”.py”、”.pyo&...
cdadata
9年前 (2016-05-27) 3436℃
0喜欢
python内置的urllib模块不支持https协议的解决办法
关键词:python urllib2 https python urllib https python3 urllib https
Django站点使用django_cas接入SSO(单点登录系统),配置完成后登录...
cdadata
9年前 (2016-05-27) 5860℃
1喜欢