gpt4 book ai didi

python - 检测字典中的 Unicode 空值

转载 作者:太空宇宙 更新时间:2023-11-04 03:03:53 24 4
gpt4 key购买 nike

我在列表中有这样的东西。

my_arr =    [{'Brand_Name': u''}, {'Brand_Name':u''}, {'Brand_Name':u'randomstr1'}]

我希望能够获取品牌名称的所有空值。在这种情况下,我会得到两个空值。我试过了

for dictionary in my_arr:
if None in dictionary:
print dictionary

这行不通。我如何获得 unicode 空值?

最佳答案

您可以使用 if not ... 检查错误值(这还将包括 None[] () 等)

>>> brands = [
{'Brand_Name': u''},
{'Brand_Name':u''},
{'Brand_Name':u'randomstr1'},
]
>>> for brand in brands:
if not brand['Brand_Name']:
print brand


{'Brand_Name': u''}
{'Brand_Name': u''}

关于python - 检测字典中的 Unicode 空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40119634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com