阅读量:2
在Python中,可以使用以下方法来判断对象是否为空:
- 使用
if
语句和not
关键字判断对象是否为空:
my_list = [] if not my_list: print("List is empty")
- 使用
len()
函数判断对象的长度是否为0:
my_dict = {} if len(my_dict) == 0: print("Dict is empty")
- 使用
bool()
函数将对象转换为布尔值,然后判断是否为False:
my_string = "" if not bool(my_string): print("String is empty")
这些方法可以用于判断列表、字典、字符串等不同类型的对象是否为空。