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
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
