I Need to know how many time a string appears in my dataframe, I used the follow sentence:
print(df['Mobile Register' == df.col1].shape[0])
But my problem is, I need to find all registers where contains Mobile Register, because in my data frame this string can be Mobile Register 1, Mobile Register 2, Mobile Register 3, Mobile Register n ...
So I understand my command will not be used, therefore, what a need to do to find the count?