I am trying to write a program to count the occurrences of a specific letter in a string without the count function. I made the string into a list and set a loop to count but th
Instead of
count == count + 1
you need to have
count = count + 1