gpt4 book ai didi

python - 解析其列少于 4 个字符的行

转载 作者:太空宇宙 更新时间:2023-11-04 09:26:40 25 4
gpt4 key购买 nike

command description
0 A.B.C.D IPv4 Prefix entries to show
1 A.B.C.D/length IPv4 Prefix mask
2 BVI Bridge-Group Virtual Interface
3 Bundle-Ether Aggregated Ethernet interface(s) | short name ...
4 Bundle-POS Aggregated POS interface(s) | short name is BP

我正在尝试选择描述少于 4 个字符的行。

我试过了

df.loc[len(df['description']) < 4]

但它给了我一个 KeyError: False .

有什么帮助吗?

最佳答案

使用Series.str.lenboolean indexing ,所以 loc 不是必需的:

df[df['description'].str.len() < 4]

关于python - 解析其列少于 4 个字符的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57322911/

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