IT 技术分享
【Pandas】检测DataFrame是否为空
zgljl2012 -
27 Jul 2017
使用
df.empty
即可。
if df.empty: print("df is empty")