- 论坛徽章:
- 11
|
假设需求是我上面所说的,即使不是,思路和实现方式也差不多。为了方便显示,用字符串IO代替了文件IO。- Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32
- Type "copyright", "credits" or "license()" for more information.
- >>> file_pass = '''
- 李瑞
- 徐务
- 五仁'''
- >>> file_ct2013 = '''
- 10.1.50.20 0194.de80.d181.6a 付足 111 13155 Yes 0 NULL
- 10.1.50.11 0100.219b.f906.0b 李瑞 112 1527811 Yes 1 12-5-23换MAC
- 10.1.50.4 0148.5b39.5c3e.04 朱赖 NULL xxxxxxx Yes 0 NULL
- 10.1.50.8 0100.0ae4.256e.fc 徐务 NULL 1347056 Yes 0 NULL
- 10.1.50.13 0118.0373.5626.59 五仁 214 1390728 Yes 1 2013-9'''
- >>> set_pass = set(name.strip() for name in file_pass.split() if len(name) > 0)
- >>> set_pass
- set(['\xce\xe5\xc8\xca', '\xc0\xee\xc8\xf0', '\xd0\xec\xce\xf1'])
- >>> from StringIO import StringIO
- >>> for line in StringIO(file_ct2013):
- records = line.strip().split()
- if len(records) != 8: continue
- records[6] = 1 if records[2] in set_pass else 0
- print records
-
- ['10.1.50.20', '0194.de80.d181.6a', '\xb8\xb6\xd7\xe3', '111', '13155', 'Yes', 0, 'NULL']
- ['10.1.50.11', '0100.219b.f906.0b', '\xc0\xee\xc8\xf0', '112', '1527811', 'Yes', 1, '12-5-23\xbb\xbbMAC']
- ['10.1.50.4', '0148.5b39.5c3e.04', '\xd6\xec\xc0\xb5', 'NULL', 'xxxxxxx', 'Yes', 0, 'NULL']
- ['10.1.50.8', '0100.0ae4.256e.fc', '\xd0\xec\xce\xf1', 'NULL', '1347056', 'Yes', 1, 'NULL']
- ['10.1.50.13', '0118.0373.5626.59', '\xce\xe5\xc8\xca', '214', '1390728', 'Yes', 1, '2013-9']
- >>>
复制代码 |
|