Ask Question
8 January, 11:19

Write a function named "list_concat" that takes a list of strings as a parameter and returns the concatenation of all the values in the list as a single string with each value separated by a space. For example, if the input is ["limit", "break", "ready"] the output should be "limit break ready"

+2
Answers (1)
  1. 8 January, 14:00
    0
    Following are the program in python language:

    def list_concat (ls) : #define function

    if (len (ls) = = 0) : #set if condition

    return ""

    res = ""

    for x in ls: #set for loop

    res + = x + " "

    return res[:len (res) - 1] #removing the extra spaces from list

    ls = ['limit','break','ready'] #initialize the value in list

    print (list_concat (ls)) #call the function

    Output:

    limit break ready

    Explanation:

    Here we declared a function "list_concat () " in which we pass an argument "ls" then check if condition that check the length of list. We also Iterating the loop in that function res[:len (res) - 1] statement removes the extra space from the list and finally print the list
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a function named "list_concat" that takes a list of strings as a parameter and returns the concatenation of all the values in the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers