T
TheSaint
Hello
I've stumble to find a solution to get a list from a set
</code>
I repute the comprehension list too expensive, is there another method?
I've stumble to find a solution to get a list from a set
['a', 'b', 'c', 'f']aa= ['a','b','c','f']
aa ['a', 'b', 'c', 'f']
set(aa) {'a', 'c', 'b', 'f'}
[k for k in aa]
</code>
I repute the comprehension list too expensive, is there another method?