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...

In the original Caesar Cipher, each letter in the message was shifted forward ____ positions.

A. two B. three C. four D. five

Computer Science & Information Technology

Which statement is false?

a. The compiler always creates a default constructor for a class. b. If a class’s constructors all require arguments and a program attempts to call a no-argument constructor to initialize an object of the class, a compilation error occurs. c. A constructor can be called with no arguments only if the class does not have any constructors or if the class has a public no-argument constructor. d. None of the above.

Computer Science & Information Technology

A series of unique bytes that identifies a virus and distinguishes it from legitimate files on your PC is called a ____.

A. signature B. virus signature C. stamp D. worm

Computer Science & Information Technology

(Searching for Substrings) Write a program based on the program of Exercise 22.23 that in- puts several lines of text and a search string, then uses function strstr to determine the total num- ber of occurrences of the string in the lines of text. Print the result.

What will be an ideal response?

Computer Science & Information Technology