It should be noted that sorted was added in Python 2.4 . If you would like a shorter version which is a bit cleaner and somewhat more backwards compatible you can alternatively use the .sort() functionality directly off of list. It should also be noted that empty strings will throw an exception when using x[0] style array indexing syntax in this case (as many examples have). .startswith() should be used instead, as is properly used in Tony Veijalainen's answer.
>>> words = ['mix', 'xyz', '', 'apple', 'xanadu', 'aardvark']
>>> words.sort(key=lambda x: (not x.startswith('x'), x))
>>> words
['xanadu', 'xyz', '', 'aardvark', 'apple', 'mix']
The only disadvantage is that you're mutating the given object. This may be remedied by slicing the list beforehand.
>>> words = ['mix', 'xyz', '', 'apple', 'xanadu', 'aardvark']
>>> new_words = words[:]
>>> new_words.sort(key=lambda x: (not x.startswith('x'), x))
>>> new_words
['xanadu', 'xyz', '', 'aardvark', 'apple', 'mix']
>>> words
['mix', 'xyz', '', 'apple', 'xanadu', 'aardvark']