in python please
Complete the following function which concatenates all strings of a given list of strings as exemplified by the tests at the end. # Purpose: concatenate all strings of a given list L of strings. # For example, if I = ["hello", "", "world") then concat(L) returns "hello worla" def concat(L): # Tests print(concat(("hello", " ", "world"])) # print out hello world print(concat(["ITS", "", "100"])) # print out its 100
in python please
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
in python please
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!