Call map() with two arguments:

1. A Lambda function that returns the square of the number it was called
with
2. A list holding the even numbers between 4 and 15; generate the list inline
using range()

>>> map(lambda g: g*g, range(4,16,2))
[16, 36, 64, 100, 144, 196]

Computer Science & Information Technology

You might also like to view...

A database must contain at least two tables

Indicate whether the statement is true or false

Computer Science & Information Technology

Using the ________ tab on the File tab you can share your presentation files in a variety of ways, depending on whether or not your presentation file is saved locally, on a SharePoint site, or on SkyDrive

Fill in the blank(s) with correct word

Computer Science & Information Technology