pyassistant

Concatenate Strings in List

Given a list of strings, return a new list where all the strings of the given list are concatenated together and separated by a space.

Example:

Input:
['hello', 'world', 'python']
Output:
'hello world python'

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.