Answers for "list square python"

0

list square python

l1 = [1,2,3,4,5]

l2 = [x**2 for x in l1] 
l2
>>> [1,4,9,16,25]
Posted by: Guest on June-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language