Computer Science

What is the output produced?

(i) >>> "-".join(['123','365','1319'])

(ii) >>> " ".join(['Python', 'is', 'fun'])

Python String Manipulation

12 Likes

Answer

(i) '123-365-1319'

(ii) 'Python is fun'

Answered By

5 Likes


Related Questions