最近在看《Effective Python》,里面提到判断字符串或者集合是否为空的原则,原文如下:
Don't check for empty values (like [] or '') by checking the length (if len(somelist) == 0). Use if not somelist and assume empty values implicity evaluate to False.
意即,不要通过取字符串或者集合的长度来判断是否为空,而是要用not关键字来判断,因为当字符串或集合为空时,其值被隐式地赋为False.
例子如下
1
2
3
4
5
6
7
8
9
10
11
12
13
|
>>> somestr = ''
>>> sometuple = ()
>>> somelist = []
>>> somedict = {}
>>> not somestr
True
>>> not sometuple
True
>>> not somelist
True
>>> not somedict
True
>>>
|
Ps. 集合包括list, tuple, dict
以上这篇python判断字符串或者集合是否为空的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u013247765/article/details/79052257