Login
Remember
Register
Ask a Question
Create a single string from all the elements in the list
0
votes
asked
May 24, 2020
in
Python
by
SakshiSharma
Create a single string from all the elements in the list
#python-single-string
#python-string
#string-python
#python-elements
#elements-python
#python-string-elements
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 24, 2020
by
Robindeniel
x = ["Madanswer", "Online", "Training"]
print(" ".join(x))
Output:
Madanswer Online Training
...