<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
-------- Original Message --------
<table border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>
      <td>Jak zjistit ze zpracovavam posledniho clena ze seznamu.</td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">Date: </th>
      <td>Tue, 11 Oct 2005 12:41:48 +0200</td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">From: </th>
      <td>David Michal <a class="moz-txt-link-rfc2396E" href="mailto:david_michal@seznam.cz">&lt;david_michal@seznam.cz&gt;</a></td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">To: </th>
      <td>Konference PyCZ <a class="moz-txt-link-rfc2396E" href="mailto:python@py.cz">&lt;python@py.cz&gt;</a></td>
    </tr>
  </tbody>
</table>
<br>
<br>
<pre>Zdravim,
mam funkci:

def stripApostrof(a):
   return tuple(map(lambda s: 't1.' + s.strip() + ',',filter(lambda i: 
i not in ("' '", "' ('", "' )'"),a.split(','))))

a = ("a","' '","b","' ('",)
s = stripApostrof(a)

&lt;oprava&gt;
vysledek: ('t1.a,','t1.b,',)

a ja bych potreboval vysledek: ('t1.a,','t1.b',)
&lt;/oprava&gt;

Tzn. u posledniho clena seznamu 'b' nechci pridavat  carku.

Napada vas nekoho jak rozsirit funkci stripApostrof tak aby k poslednimu 
clenu seznamu nepricetl carku?


Diky,
David


</pre>
</body>
</html>