I haven't been able to find this anywhere else. I have
lst = [
{'n':'Ste', ...}
,{'n':'Mil', ...}
,{'n':'Tob', ...}
,{'n':'', ...}
,{'n':'Ste', ...}
,{'n':'Mil', ...}
]
How can I reduce this to a distinct
['Ste','Tob','Mil','']
Thanks.