python判斷一個對象是否爲空的方法

判斷對象是否爲空: spa 複製代碼 代碼以下: >>> eth = {"eth0″:"192.168.1.1″} >>> any(eth) True >>> eth = {} >>> any(eth) False 判斷list是否爲空code 傳統的方式: orm 複製代碼 代碼以下: if len(mylist):     # Do something with my list else:  
相關文章
相關標籤/搜索