Question

python Write a function named average_list() that uses a string list and outputs the av. len...

python

Write a function named average_list() that uses a string list and outputs the av. len of all the strings in the list with also the amount of strings with a len of ^ average, below, and = to avg.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
def average_list(strings):
    total = 0
    for string in strings:
        total += len(string)
    return total / len(strings)


# Testing the function here. ignore/remove the code below if not required
print(average_list(['hi', 'hello', 'how', 'are', 'you?']))

Add a comment
Know the answer?
Add Answer to:
python Write a function named average_list() that uses a string list and outputs the av. len...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT