怎样把list里的02 04 03转换成正常顺序的02,03,04(怎样才能两个数中间加逗号而不是一个数中间加逗号呢?
aaa = "02 04 03"print(','.join(sorted(aaa.split(" "))))