Python判断list是否为空有两种方式 方法一:隐式判断法 list_temp = [] if list_temp: # 存在值即为真 else: # list_temp为空 方法二:显式判断法 if len(list_temp): # 存在值即为真 else: # list_temp为空