题解 | #图片整理#
图片整理
http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941
每天一遍,我爱python。全靠列表的sort函数,太赖皮了
s=input()
res=list(s)
res.sort()
answer=''
for j in res:
answer+=j
print(answer)
图片整理
http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941
每天一遍,我爱python。全靠列表的sort函数,太赖皮了
s=input()
res=list(s)
res.sort()
answer=''
for j in res:
answer+=j
print(answer)
相关推荐