首页 > 编程 > Python > 正文

python: 判断tuple、list、dict是否为空的方法

2020-02-15 23:19:58
字体:
来源:转载
供稿:网友

Test

tuple_test = ()assert not tuple_testlist_test = []assert not list_testdict_test = {}assert not dict_test

Summary

根据实验结果可知,直接通过:

if not xxx:

即可判断 tuple、list、dict 是否 为空 。

以上这篇python: 判断tuple、list、dict是否为空的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表