Skip to content

Commit ab1bbb5

Browse files
committed
add ',' in python code.
1 parent f6024a7 commit ab1bbb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cookbook/c01/p16_filter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- encoding: utf-8 -*-
33
"""
44
Topic: 序列元素过滤
5-
Desc :
5+
Desc :
66
"""
77
from itertools import compress
88

@@ -37,7 +37,7 @@ def is_int(val):
3737
'5412 N CLARK',
3838
'5148 N CLARK',
3939
'5800 E 58TH',
40-
'2122 N CLARK'
40+
'2122 N CLARK',
4141
'5645 N RAVENSWOOD',
4242
'1060 W ADDISON',
4343
'4801 N BROADWAY',
@@ -49,4 +49,4 @@ def is_int(val):
4949

5050

5151
if __name__ == '__main__':
52-
cb_filter()
52+
cb_filter()

0 commit comments

Comments
 (0)