Write a Python function named count_long_words(words, min_le…
Write a Python function named count_long_words(words, min_length) that takes a list of strings and an integer. It should return the number of words whose length is greater than or equal to min_length. Do not ask for input inside the function.
Read Details