可以使用sorted函数对字符串进行降序排序,然后使用join方法将排好序的字符重新组合成一个字符串。示例如下:
s = "hello world" sorted_s = ''.join(sorted(s, reverse=True)) print(sorted_s)
输出结果为:
wroolldlh e