0 votes
in Python by
Create a single string from all the elements in the list

1 Answer

0 votes
by
x = ["Madanswer", "Online", "Training"]

print(" ".join(x))

Output:

Madanswer Online Training

Related questions

0 votes
asked Feb 11, 2021 in Python by SakshiSharma
0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
...