<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<a class="moz-txt-link-abbreviated" href="mailto:gheremedin.daniele@alice.it">gheremedin.daniele@alice.it</a> wrote:
<blockquote
 cite="mid03DC102750CE34479A7AFF6504FA665D40BE5A@FBCMST09V06.fbc.local"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta name="Generator"
 content="MS Exchange Server version 6.5.7651.51">
  <title>eliminare spazi da lista</title>
<!-- Converted from text/plain format -->
  <p><font size="2">salve community di python, devo eliminare degli
spazi da una lista.<br>
la lista fino a 9 ha spazi e poi no<br>
  <br>
c=['1',' ','2',' ',3,' ','4',' ','5',' ','6',' ','7',' ','8','
','9','10','11','12','13']<br>
  <br>
come meglio mi consigliate di farlo<br>
  </font></p>
</blockquote>
filter(lambda x: x!=' ', c)<br>
<br>
Ciao<br>
Alessandro<br>
<br>
</body>
</html>