- 论坛徽章:
- 3
|
学生党:无聊~python简单的写一下13题试试
- #!/usr/bin/env python
- #-*- coding:gbk -*-
- "just for fun for -13"
- import sys
- import fileinput
- list={}
- for x in fileinput.input(sys.argv[1:]):
- m=x.replace('|',':').replace(',',':')
- a=m.split(':')[0]
- b=m.split(':')[2]
- c=m.split(':')[7]
- d=m.split(':')[9].strip('\n')
- if (a,b,c,d) not in list.keys():
- list[(a,b,c,d)]=1
- else:
- list[(a,b,c,d)]+=1
- for k,v in list.iteritems():
- print "%-20s--->%s" % (','.join(k),v)
复制代码 效果:
$ ./yhsafe.py yhsafe.txt
abcd,7818,axcd,asda --->5
abcx,7818,axcd,asda --->1
|
|