Saved Bookmarks
| 1. |
Write a program which can map() to make a list whose elements are cube of elements in a given list |
|
Answer» Answer: I have a list which I want to SQUARE each of them. this is what I have DONE DEF square(x): return x*x numbers = [1,2,3,4,5,6] SQUARES = MAP(square, ... |
|