in python please

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

in python please

Post by answerhappygod »

in python please
In Python Please 1
In Python Please 1 (39.54 KiB) Viewed 52 times
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply