Better syntax
This commit is contained in:
parent
61abf54942
commit
71d32e87fe
1 changed files with 2 additions and 2 deletions
4
3/3.py
4
3/3.py
|
@ -4,8 +4,8 @@
|
||||||
import re
|
import re
|
||||||
|
|
||||||
line_count = 0
|
line_count = 0
|
||||||
count = [0 for x in range(12)]
|
count = [0] * 12
|
||||||
result = [0 for x in range(12)]
|
result = [0] * 12
|
||||||
|
|
||||||
re_parse = re.compile(r'(\d)'*12)
|
re_parse = re.compile(r'(\d)'*12)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue