Kingway_fight

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2016年9月6日

摘要: Python 字符串格式化 Python的字符串格式化有两种方式: 百分号方式、format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存 一、百分号方式 %[(name)][flags][width].[precision]typecode 阅读全文
posted @ 2016-09-06 20:40 Kingway_fight 阅读(144) 评论(0) 推荐(0)

摘要: Python装饰器 有这样一个函数,代码如下: 1 2 3 4 5 6 7 from functools import reduce def sum(): total = reduce(lambda x,y: x+y, range(100000)) print (total) sum() 1 2 3 阅读全文
posted @ 2016-09-06 17:01 Kingway_fight 阅读(295) 评论(0) 推荐(0)