Python: Trier un tuple

Python: Trier un tuple
       

T = ('cc', 'aa', 'dd', 'bb')

tmpListe = list(T)

tmpListe.sort()

print tmpListe

T=tuple(