9.16. Looping and Counting¶
We will finish this chapter with a few more examples that show variations on the theme of iteration through the characters of a string. We will implement a few of the methods that we described earlier to show how they can be done.
The following program counts the number of times a particular letter, aChar
, appears in a
string. It is another example of the accumulator pattern that we have seen in previous chapters.
def count(text, aChar):
lettercount = 0
for c in text:
if c == aChar:
lettercount = lettercount + 1
return lettercount
print(count("banana","a"))
(chp08_fun2)
The function count
takes a string as its parameter. The for
statement iterates through each character in
the string and checks to see if the character is equal to the value of aChar
. If so, the counting variable, lettercount
, is incremented by one.
When all characters have been processed, the lettercount
is returned.
find
function