我正在寻找最大量的!在数据框中我并非100%确定我是否拥有正确的代码:
finefoods_df['Review'].max().count("!")
答案 0 :(得分:2)
使用str.count
和然后查找其max
:
finefoods_df['Review'].str.count('!').max()
<强>演示强>
df
A
0 hi!
1 hello!!
2 bye!!!
df.A.str.count('!')
0 1
1 2
2 3
Name: A, dtype: int64
df.A.str.count('!').max()
3