如果一个Python list中有很多重复的项,如何有效地找到多少重复的项呢?可以使用collection的Counter方法。。>>> from collections import Counter>>> Counter([11,22,11,44,22,33])Counter({11: 2, 22...
分类:
编程语言 时间:
2014-06-23 06:41:24
阅读次数:
214
$name = "abc_2014-06-19.txt" $name -cmatch '^abc_(?\d{4})-(?\d{2})-(?\d{2})\.txt' $matches$matches.year $matches.day$id="/cs/blogs/tips/arch...
分类:
其他好文 时间:
2014-06-20 17:34:06
阅读次数:
204
1. sizeof(literal-string) is number of bytes plus 1 (NULL is included), while strlen(literal-string) is number of bytes.2. Printf and scanf formatBefo...
分类:
其他好文 时间:
2014-06-18 10:14:22
阅读次数:
226
原文地址这篇文章来源于Quroa的一个问答《What are some time-saving
tips that every Linux user should know?》——
Linux用户有哪些应该知道的提高效率的技巧。我觉得挺好的,总结得比较好,把其转过来,并加了一些自己的理解。 首先,我...
分类:
系统相关 时间:
2014-06-16 09:36:55
阅读次数:
436
The following tips are designed to help you use the microwave bags, and usually on the back of each bag. Most of sterilization bags in the market, the...
分类:
其他好文 时间:
2014-06-15 20:50:27
阅读次数:
271
1. iOS Simulator Tips &
Trickshttp://code.tutsplus.com/tutorials/ios-simulator-tips-tricks--mobile-128442.http://stackoverflow.com/questions/18880893/...
分类:
移动开发 时间:
2014-06-11 11:43:08
阅读次数:
281
Nginx 常见应用技术指南[Nginx Tips] 第二版目 录一、 Nginx 基础知识二、
Nginx 安装及调试三、 Nginx Rewrite四、 Nginx Redirect五、 Nginx 目录自动加斜线:六、 Nginx Location七、
Nginx expires八、 Ngin...
分类:
其他好文 时间:
2014-06-11 10:38:21
阅读次数:
402
三元运算符Vb中的iif(expr,truepart,falsepart)和C#中的expr?truepart:falsepart.无论expr的结果是true还是false,true/falsepart都会被执行.所以不能写类似于obj!=null?obj.name:string.empty.tr...
分类:
其他好文 时间:
2014-06-10 21:38:50
阅读次数:
212
Roslyn的PM(程序经理) Bill
Chiles,Roslyn使用纯托管代码开发,但性能超过之前使用C++编写的原生实现,这有什么秘诀呢?他最近写了一篇文章叫做《Essential
Performance Facts and .NET Framework Tips》里头推荐了一个性能分析工具《...
分类:
其他好文 时间:
2014-06-08 08:06:37
阅读次数:
310
附加数据库 Attach database filename as
database_name;主数据库默认为 "Main", 在使用Attach命令时, 不能将database_name指定为main; 当附加多个数据库,
并且存在相同名称的表时, 如果在命令时末指定数据库名(database_n...
分类:
数据库 时间:
2014-06-08 01:34:32
阅读次数:
274