Skip to content

Commit 06f829c

Browse files
Update finding_numbers_in_a_haystack.py
1 parent ba90a96 commit 06f829c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Using_Python_to_Access_Web_Data/finding_numbers_in_a_haystack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
if re.search('[0-9]+',lines):
1515
nums=re.findall('[0-9]+',lines)
1616
for num in nums:
17-
i=int(num)
17+
num=int(num)
1818
intl.append(num)
1919

2020
print(intl)

0 commit comments

Comments
 (0)