怎样使string重新排序后间隔两个加逗号?input:03 04 02output:02,03,04
aaa = "03 04 02"print(','.join(sorted(aaa.split(" "))))