- 论坛徽章:
- 3
|
学生党:飘过~嘿嘿还是木有抢到宝座呵呵...python试试吧
- $ cat yhsafe.py
- #!/usr/bin/env python
- #-*- coding:gbk -*-
- "just for fun for -just soso"
- import sys
- import operator
- import fileinput
- dict={}
- for a in fileinput.input(sys.argv[1:]):
- for x in set(a.strip('\n')):
- if not dict.has_key(a):
- dict[a]=[]
- else:
- dict[a].append(str(a.count(x)))
- list=[]
- for k,v in dict.iteritems():
- list.append('{} {}'.format(k.strip('\n'),' '.join(sorted(v,key=str,reverse=True))).split(' '))
- for x in sorted(sorted(list,key=operator.itemgetter(1,2,3,4,5,6),reverse=True)):
- print '%-30s---->%s' % (x[0],' '.join(x[1:]))
复制代码 测试:
$ ./yhsafe.py yhsafe.txt
452142122abcada ---->4 2 2 1 1 1 1
abaac,45214a ---->2 1 1 1 1 1 1
abac45214 ---->2 1 1 1 1 1
abcaba4521 ---->2 1 1 1 1 1 |
|