hello,

can someone tell me why the following iteration doesn't work,
and
how I should replace empty strings in a list with a default value.

 >>> v
['123', '345', '', '0.3']
 >>> for items in v:
...       if items=='':
...           items='3'
...
 >>>
 >>> v
['123', '345', '', '0.3']
 >>>

thanks,
Stef Mientki
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to