I have list of string but in each string is duplicate I need to remove. f.e.:
lst = ('word1 2 36 2 2' ' word2 96 5 5 5 14' 'word3 45 6 45 45')
etc.
I need:
lst = ('word1 2 36' 'word2 96 5 14' 'word3 45 6')
|
I have list of string but in each string is duplicate I need to remove. f.e.:
etc. I need:
|
||||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Generally:
|
|||
|
|
|
Your question is not very clear, and as-written your "list" isn't a list but a string. I guess you probably meant to make it a tuple, but even then you need commas between the items. In the following example, we iterate over the items, split the string split() function, add the items to a set, join them together again with the string join, and append them to our output list (a real list this time):
This can be written more compactly with a list comprehension:
|
|||||||||||
|
lists, but anyway, with which part of the algorithm are you stuck? Show us what you've tried so far and we'll try to help. – Johnsyweb Oct 10 '11 at 11:41