Home python How to convert a list to the line

How to convert a list to the line [Duplicate]

Author

Date

Category

Suppose I have a list ['Hello', 'Case']
I need it to turn into a string without the spaces 'Hellocase'
How to do it?


Answer 1, Authority 100%

string method join

''. Join (['Hello', 'Case']))

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions