Python中字符串去重及排序的方法有以下幾種:
s = "hello world"
s = ''.join(set(s))
print(s)
s = "hello world"
s = ''.join(sorted(s))
print(s)
s = "hello world"
s = ''.join(dict.fromkeys(s))
print(s)
s = "hello world"
s = ''.join(sorted(set(s)))
print(s)
以上是幾種常見的Python字符串去重及排序的方法,根據實際需要選擇合適的方法來解決問題。