gpt4 book ai didi

python - 如何获取以小写字母开头的行的索引列表?

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

我有一个数据框,其中一列是 df['Names']。如何找到名称以小写字母开头的所有行?

col1     Names  
1564 abby
2289 Barry

等等

我正在尝试使用正则表达式来完成此操作,但运气不佳。

最佳答案

str.lower 的一种方式

df[df.Names.str[0]==df.Names.str[0].str.lower()]
Out[173]:
col1 Names
0 1564 abby

另一种方式更慢

df[df.Names.str[0].str.islower()]
Out[174]:
col1 Names
0 1564 abby

关于python - 如何获取以小写字母开头的行的索引列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55368594/

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