The function below takes one parameter: a list of strings (string_list). Complete the function to return a new list containing only the strings from the original list that are less than 20 characters long. For this question, you'll first want to create an empty list. Then, you'll want to visit every element of the original list checking to see if it is short. You'll append the short strings to your new list. Finally, return the new list.

Respuesta :

Answer:

def short_strings(string_list):

   short_list = []

   for s in string_list:

       if len(s) < 20:

           short_list.append(s)

   return short_list

Explanation:

* The code is in Python.

- Create a function called short_strings that takes one parameter, string_list

- Create an empty list called short_list to hold the strings that are less than 20 characters

- Initialize a for loop that iterates through the string_list. Check if there are strings that are less 20 characters in the string_list. If found, put them in the short_list

- Return the short_list

fichoh

The program returns a list of strings containing only less than 20 characters from the original list supplied. The program is written in python 3 thus :

def less_20(list_strings):

#initialize a function which takes in a list of strings

short_string = []

#empty list to save the strings whose length are less than 20

for string in list_strings:

#iterate through each element in the list

if len(string) < 20:

#Check if the length is less than 20

short_string.append(string)

#append the string to the short_string list

return short_string

#return short string

mylist= ['sinclair', 'exaggwration', 'papastathopoloisduler', 'martin']

print(less_20(mylist))

Sample run of the program is attached

Learn more : https://brainly.com/question/20912100

Ver imagen fichoh