<!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"><david_michal@seznam.cz></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"><python@py.cz></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)
<oprava>
vysledek: ('t1.a,','t1.b,',)
a ja bych potreboval vysledek: ('t1.a,','t1.b',)
</oprava>
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>