Re: [Tutor] joining selected items in list

2012-06-24 Thread Steven D'Aprano
David wrote: Dear Tutors, I have a list that I wish to reorganise into fewer list items. What happens is that some of the items belong together: not ['keine', 'Antwort'] but ['Keine Antwort']. I am not aware of any list methods that can help me here, and would thus be grateful for a hint or two

Re: [Tutor] joining selected items in list

2012-06-24 Thread Andreas Perstinger
On Sun, 24 Jun 2012 18:11:10 +0200 David wrote: > I have a list that I wish to reorganise into fewer list items. > What happens is that some of the items belong together: > not ['keine', 'Antwort'] but ['Keine Antwort']. > > I am not aware of any list methods that can help me here, and would >

Re: [Tutor] joining selected items in list

2012-06-24 Thread Alan Gauld
On 24/06/12 17:11, David wrote: Dear Tutors, I have a list that I wish to reorganise into fewer list items. What happens is that some of the items belong together: not ['keine', 'Antwort'] but ['Keine Antwort']. I am not aware of any list methods that can help me here, and would thus be gratefu

Re: [Tutor] joining selected items in list

2012-06-24 Thread Emile van Sebille
On 6/24/2012 9:11 AM David said... Dear Tutors, I have a list that I wish to reorganise into fewer list items. What happens is that some of the items belong together: not ['keine', 'Antwort'] but ['Keine Antwort']. Can you define the complete list of items that belong together? If so, there's

[Tutor] joining selected items in list

2012-06-24 Thread David
Dear Tutors, I have a list that I wish to reorganise into fewer list items. What happens is that some of the items belong together: not ['keine', 'Antwort'] but ['Keine Antwort']. I am not aware of any list methods that can help me here, and would thus be grateful for a hint or two. Thank you!