Answers for "do operations to specific elements in a list python"

2

how to operate on all elements in a list python

oldlist = [1,2,3]
newlist = [i * 2 for i in oldlist]
print(newlist)
# >>> [2, 4, 6]
Posted by: Guest on December-12-2020

Code answers related to "do operations to specific elements in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language