本文介绍了如何检查pandas DataFrame是否为空?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何检查大熊猫DataFrame是否为空?就我而言,如果DataFrame为空,我想在终端中打印一些消息.

How to check whether a pandas DataFrame is empty? In my case I want to print some message in terminal if the DataFrame is empty.

推荐答案

您可以使用属性df.empty来检查其是否为空:

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

if df.empty:
    print('DataFrame is empty!')

来源:熊猫文档

这篇关于如何检查pandas DataFrame是否为空?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 15:26