Python pandas check if dataframe is not empty

前端 未结 4 1979
粉色の甜心
粉色の甜心 2021-02-11 11:59

I have an if statement where it checks if the data frame is not empty. The way I do it is the following:

if dataframe.empty:
    pass
else:
    #do          


        
4条回答
  •  甜味超标
    2021-02-11 12:48

    You can use the attribute dataframe.empty to check whether it's empty or not:

    if not dataframe.empty:
        #do something
    

    Or

    if len(dataframe) != 0:
       #do something
    

    Or

    if len(dataframe.index) != 0:
       #do something
    

提交回复
热议问题