HJ34 图片整理

思路:

step1:使用sorted()函数对输入进行排序,所得的均为“'x'”形式,之后使用.join()函数将序列中的元素以指定的字符(这里是空串)连接生成一个新的字符串

代码如下:

print(''.join(sorted(input())))