NP23 判断列表是否为空

思路:

对应分支输出对应语句即可;

代码如下:

my_list = []
if my_list == []:
    print('my_list is empty!')
else:
    print('my_list is not empty!')