Count

Arguments

Explanation

Returns the amount of times the given substring (needle) appears within the string.

Examples

"Hello".count('l') == 2
"".count("I'm not in the string") == 0

Last updated