Home
Python Tutorial
Introduction
Data Type
Statement
Operator
String
Tuple
List
Dictionary
Collections
Function
Class
File
Buildin Function
Buildin Module
Database
Regular Expressions
Thread
Tkinker
wxPython
XML
Network
CGI Web
Windows
Menu
map « Buildin Function « Python Tutorial
Python Tutorial
Buildin Function
map
13.31.map
13.31.1.
map(function, sequence) calls function(item) for each of the sequence's items and returns a list of the return values
13.31.2.
"map(None, list1, list2)" is a convenient way of turning a pair of lists into a list of pairs
13.31.3.
Mapping Functions over Sequences: map
13.31.4.
Mapping Functions over Sequences: map and lambda