Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Sorting frozen set (Fundamentals)

Is there someway to sort a frozen set, I tried converting the values into string and they sort but I can't unconvert them to attach them to the pipeline.

for x in Fundamentals.columns:  
    l.append(str(x))

l.sort()