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 ▸

Write a recursive function that takes any integer n and prints the nth Fibonacci number.


How do I use format python code?


What is the difference between DFS and BFS? Where can I apply each?


Which four data types are used in Python? Can you give an example of each?