Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Message from discussion Newbie: Struggling again 'map'
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Roel Schroeven  
View profile  
 More options May 26 2007, 9:47 pm
Newsgroups: comp.lang.python
From: Roel Schroeven <rschroev_nospam...@fastmail.fm>
Date: Sat, 26 May 2007 11:47:58 GMT
Local: Sat, May 26 2007 9:47 pm
Subject: Re: Newbie: Struggling again 'map'
mosscliffe schreef:

> for x,y in map("N/A", lista, listb): ########## Fails - Can not call a
> 'str'
>     print "MAP:", x, "<<x  y>>", y

> def fillwith(fillchars):
>     return fillchars

> for x,y in map(fillwith("N/A"), lista, listb): ########## Fails also -
> Can not call a 'str'
>     print "MAP:", x, "<<x  y>>", y

The first argument to map is a function, which is called with the items
of the argument sequences. If the first argument is None, a default
function is used which returns a tuple of the items. In the case that
two input sequences are provided:

map(None, lista, listb)

is equivalent to:

def maketuple(a, b):
     return a, b
map(maketuple, lista, listb)

So what you want to do can be done with map like this:

def make_fill_missing(fillchars):
     def fill_missing(a, b):
         if a is None:
             a = fillchars
         if b is None:
             b = fillchars
         return a, b
     return fill_missing

map(make_fill_missing("N/A"), lista, listb))

--
If I have been able to see further, it was only because I stood
on the shoulders of giants.  -- Isaac Newton

Roel Schroeven


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google