Answer:
python
Step-by-step explanation:
def count_letters(p, let):
count = 0
for char in p:
if char == let:
count += 1
print(f"There are {count} occurrences of {let} in the phrase {p}")
def main():
the_phrase = input("What phrase to analyze?\\")
the_letter = input("What letter to count?\\")
count_letters(the_phrase, the_letter)
main()