2017-07-26 04:37:36 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
2017-07-23 05:32:18 +00:00
|
|
|
|
2018-07-09 22:13:02 +00:00
|
|
|
from .word_count import search, search_sequential
|
2017-07-26 04:37:36 +00:00
|
|
|
|
|
|
|
__all__ = ['search', 'search_sequential', 'search_py']
|
|
|
|
|
|
|
|
|
|
|
|
def search_py(path, needle):
|
|
|
|
total = 0
|
|
|
|
with open(path, 'r') as f:
|
|
|
|
for line in f:
|
|
|
|
words = line.split(' ')
|
|
|
|
for word in words:
|
|
|
|
if word == needle:
|
|
|
|
total += 1
|
|
|
|
return total
|