【Pandas】检测DataFrame是否为空

使用df.empty即可。

if df.empty:
    print("df is empty")