Python: Concatenate elements of a list
Concatenate List Elements
Write a Python program to concatenate elements of a list.
Sample Solution:
Python Code:
# Define a list 'color' containing color names as strings
color = ['red', 'green', 'orange']
# Use the 'join' method to concatenate the elements of the 'color' list with a hyphen '-' in between
# Print the resulting string
print('-'.join(color))
# Use the 'join' method to concatenate the elements of the 'color' list without any separator
# Print the resulting string
print(''.join(color))
Sample Output:
red-green-orange redgreenorange
Flowchart:
Python Code Editor:
Previous: Write a Python program to create a list with infinite elements.
Next: Write a Python program to remove key values pairs from a list of dictionaries.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics