如何把list里的数字重新排序并间隔加逗号?

怎样把list里的
02 04 03
转换成正常顺序的
02,03,04
(怎样才能两个数中间加逗号而不是一个数中间加逗号呢?

aaa = "02 04 03"
print(','.join(sorted(aaa.split(" "))))