Skip to content
Advertisement

Prepend the same string to all items in a list

Have done some searching through Stack Exchange answered questions but have been unable to find what I am looking for.

Given the following list:

JavaScript

How would I create:

JavaScript

Thanks!

Advertisement

Answer

Use a list comprehension:

JavaScript

A list comprehension lets you apply an expression to each element in a sequence. Here that expression is a formatted string literal, incorporating i into a string starting with hello.

Demo:

JavaScript
Advertisement