Python: Insert a given string at the beginning of all items in a list
Insert String Before List Items
Write a Python program to insert a given string at the beginning of all items in a list.
Sample Solution:
Python Code:
# Define a list 'num' containing integers
num = [1, 2, 3, 4]
# Use a list comprehension to create a new list of strings, where each string is formed by appending the index (formatted as a string) to the string 'emp'
# This effectively generates a list of strings with elements like 'emp1', 'emp2', 'emp3', 'emp4'
new_list = ['emp{0}'.format(i) for i in num]
# Print the new list 'new_list' containing the formatted strings
print(new_list)
Sample Output:
['emp1', 'emp2', 'emp3', 'emp4']
Flowchart:
Python Code Editor:
Previous: Write a Python program to print a list of space-separated elements.
Next: Write a Python program to iterate over two lists simultaneously.
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