Answers for "add a number to each element of a list python"

2

how to append a number to a list in python

l = [1, 2, 4, 5] 
new_item = 6
l.append(6)
print(l)
Posted by: Guest on March-17-2021
1

how to add a number to every element in a list python

new_list = [x+1 for x in my_list]
Posted by: Guest on March-12-2021

Code answers related to "add a number to each element of a list python"

Python Answers by Framework

Browse Popular Code Answers by Language