摘要: def strPaiXu(p): s = '' a = [ord(i) for i in p] #a = list(map(ord,p)) a.sort() p = [chr(i) for i in a] for i in p: s += i return s 阅读全文
posted @ 2017-01-03 20:32 疯陈演义 阅读(122) 评论(0) 推荐(0)