43. Problem to convert a list of words into a single string.

In this Python list program, we will take a user input as a list and containing words and convert a list of words into a single string with the help of the below-given steps.

Convert a list of words to a string:

  1. Take a list containing words as Input.
  2. Use for loop to combine the words.
  3. Print the output.
				
					#Input list
list1 = ["Sqa", "Tools","Best", "Learning", "Platform"]

for word in list1:
    print(word, end="")
				
			

Output :

				
					SqaToolsBestLearningPlatform
				
			

Related Articles

Convert multiple numbers into a single number

Print list elements separately

Leave a Comment