无法在函数之间传递变量中的数据

时间:2017-05-23 18:35:28

标签: python python-2.7 function variables global-variables

我是Python的新手。我熟悉跨函数传递数据的概念。

理论上,

def c():
   r = raw_input("Ask Something? ")
   ..
   return r

def p(x):
    ...
    do something

r = c()
p(r)

下面的代码通过Terminal(python filename.py file.txt)工作正常,但我想添加工作流,其中变量存储文件的路径并将其传递给函数(processFile)。我只是无法将数据/值传递给函数。

这是我要编辑的代码:

def registerException(exc):
    exceptions[exc] += 1

def processFile(x):
  with open(x, "r") as fh:
    currentMatch = None
    lastLine = None
    addNextLine = False
    for line in fh.readlines():
      if addNextLine and currentMatch != None:
         addNextLine = False
         currentMatch += line
         continue
      match = REGEX.search(line) != None
      if match and currentMatch != None:
         currentMatch += line
      elif match:
         currentMatch = lastLine + line
      else:
         if currentMatch != None:
            registerException(currentMatch)
         currentMatch = None
      lastLine = line
      addNextLine = CONT.search(line) != None
    # If last line in file was a stack trace
    if currentMatch != None:
      registerException(currentMatch)

for f in sys.argv[1:]:
  processFile(f)

for item in sorted(exceptions.items(), key=lambda e: e[1], reverse=True):
  print item[1], ":", item[0]

如果我将变量声明为Global或local,则无关紧要。有人可以帮我解决这个问题吗?

编辑1:

我已应用Daniel Suggested的更改,现在我得到了: TypeError:' NoneType'对象不可迭代。

以下是代码:

def c():
    path = raw_input("Path to file? ")
    r = os.path.abspath(path)

def process_file(filename):
    current = None
    last_line = None
    continue_line = False
    with open(filename, "r") as fh:
        for line in fh:
            if continue_line and current is not None:
               continue_line = False
               current += line
               continue
            if REGEX.search(line):
               if current is None:
                  current = last_line
               current += line
            else:
               if current is not None:
                  yield current
               current = None
            last_line = line
            continue_line = CONT.search(line)
        # If last line in file was a stack trace
        if current is not None:
            yield current

def process_files(filenames):
    exceptions = defaultdict(int)
    for filename in filenames:
        for exc in process_file(filename):
            exceptions[exc] += 1

for item in sorted(exceptions.items(), key=lambda e: e[1], reverse=True):
    print item[1], ":", item[0]

r = c()
process_files(r)

我做了一些更改并删除了sys.argv [1],因为它在运行脚本时需要在命令行中使用参数。

我认为我得到的新错误是由于OS Path。我怎样才能解决这个问题 ?

1 个答案:

答案 0 :(得分:0)

exceptions也是一个参数,必须转移到所有函数。或者,您可以将processFile写为生成器,内联registerException

def process_file(filename):
    current = None
    last_line = None
    continue_line = False
    with open(filename, "r") as fh:
        for line in fh:
            if continue_line and current is not None:
                continue_line = False
                current += line
                continue
            if REGEX.search(line):
                if current is None:
                    current = last_line
                current += line
            else:
                if current is not None:
                    yield current
                current = None
            last_line = line
            continue_line = CONT.search(line)
        # If last line in file was a stack trace
        if current is not None:
            yield current

def process_files(filenames)
    exceptions = defaultdict(int)
    for filename in filenames:
        for exc in process_file(filename):
            exceptions[exc] += 1

    for item in sorted(exceptions.items(), key=lambda e: e[1], reverse=True):
        print item[1], ":", item[0]

process_files(sys.argv[1:])