- 博客(4)
- 收藏
- 关注
转载 常用模块
转自:https://www.cnblogs.com/alex3714/articles/5161349.html本节大纲:模块介绍time &datetime模块randomossysshutiljson & picleshelvexml处理yaml处理configparserhashlibsubprocesslogging模块re正则表达式模块...
2018-10-06 15:38:03
149
转载 迭代器&生成器
转自:https://www.cnblogs.com/yuanchenqi/articles/5769491.html一 概要在了解Python的数据结构时,容器(container)、可迭代对象(iterable)、迭代器(iterator)、生成器(generator)、列表/集合/字典推导式(list,set,dict comprehension)众多概念参杂在一起,难免让初学者一头雾水...
2018-10-06 09:38:45
250
原创 python装饰器实例
import timedef logger(flag=’’): #显示用flag,默认不显示def show_time(func): #时间打印装饰器def inner(*args,**kwargs):func(*args,**kwargs) #所有函数可调用print(time.strftime("%Y-%m-%d %H:%M:%S",time.localtim...
2018-10-05 18:57:07
388
转载 TypeError:'dict' object is not callable
出现这种错误有两种可能:代码里重新定义了dict,比如 dict= {…},这时调用的是代码里定义的dict而不是python内置类型取字典内容时用了()而不是[]。比如sdict(“content_id”),应该是sdict[“content_id”]...
2018-10-04 15:27:31
72251
4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人