add ',' in python code.

This commit is contained in:
caimaoy
2016-08-30 19:54:35 +08:00
parent f6024a7f16
commit ab1bbb5e4e

View File

@@ -2,7 +2,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
""" """
Topic: 序列元素过滤 Topic: 序列元素过滤
Desc : Desc :
""" """
from itertools import compress from itertools import compress
@@ -37,7 +37,7 @@ def cb_filter():
'5412 N CLARK', '5412 N CLARK',
'5148 N CLARK', '5148 N CLARK',
'5800 E 58TH', '5800 E 58TH',
'2122 N CLARK' '2122 N CLARK',
'5645 N RAVENSWOOD', '5645 N RAVENSWOOD',
'1060 W ADDISON', '1060 W ADDISON',
'4801 N BROADWAY', '4801 N BROADWAY',
@@ -49,4 +49,4 @@ def cb_filter():
if __name__ == '__main__': if __name__ == '__main__':
cb_filter() cb_filter()