How can you take a list of numbers and add 3 to every number in the list using only one line of code?

If the list is l1, we can create a new list l2 with all the numbers within being 3 more than each number in l2 by using a list comprehension as follows:

l2 = [x+3 for x in l1]

TD

Related Python Mentoring answers

All answers ▸

Create a program that generates prime numbers between two integer boundareis


Write a short program to print all the even numbers 1 to 100


What is the difference between a for loop and a while loop.


What is the difference between a cycle "if" and "while"?