def count_long_words(words):
total = 0
for word in words:
if len(word) > 4:
total = total + 1
return total
items = ["book", "banana", "pen", "laptop"]
result = count_long_words(items)
print(result)
Identify the function name, parameter, return type, loop used, condition checked, and output.
Write a function named count_a_words(words) that takes a list of strings and returns how many words start with the letter a. Then write three test calls.