i was wondering if there was any simple way around sorting tuples in lists in python, for instance if i have a list:
list01 = ([a,b,c],[b,a,d],[d,e,c],[a,f,d])
and i sorted it, i would get:
([a,b,c],[a,b,d],[c,d,e],[a,d,f])?
or even:
([a,b,c],[a,b,d],[a,d,f],[c,d,e])
if that's easier
Thanx in advance:)
[]surround a list.()surround a tuple.