gpt4 book ai didi

python - 使用 Pandas 获取空单元格的行和列

转载 作者:太空宇宙 更新时间:2023-11-04 02:30:15 24 4
gpt4 key购买 nike

我正在尝试获取包含空单元格的 xls 文件。我需要使用 pandas 验证 xls 文件以获取行和列位置

This is the excel sheet

预期输出:

第 2 行第 2 列为空值 [或]找不到 Account1 的租户 ID

最佳答案

试试这个来获取没有租户 ID 的帐户名称列表:

res = df.loc[df['Tenant ID'].isnull(), 'Account Name'].tolist()

或者,为租户 ID 为空的行过滤数据框:

df = df.loc[df['Tenant ID'].isnull(), :]

解释

  • .loc 访问器允许您通过 bool 数组标签指定行和列。
  • 对于行过滤器,我们通过 pd.Series.isnull 使用 bool 数组来识别 Tenant Id 为空的行。
  • 对于列过滤器,我们可以使用'Account Name' 并通过pd.Series.tolist 输出到列表。

关于python - 使用 Pandas 获取空单元格的行和列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49382992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com