嗨我目前正在尝试研究python以及我在尝试使用一个站点进行正则表达时我所拥有的内容然后根据结果通过不同的def发送以获得最终结果。我在下面展示了一个粗略的例子。我看过线程,但不是100%,如果它是我想要的或如何实现它,我想要做的是加快过程,因为可能需要一段时间来编译我的列表在最后。这是一个粗略的例子
def main regex():
match = etc
for result in match:
If 'a' in result:
A(result)
elif 'b' in result:
B(result)
elif 'c' in result:
C(result)
And so on....
def A(result):
Match = etc
for result in Match:
print result
def B(result):
Match = etc
for result in Match:
print result
def C(result):
Match = etc
for result in Match:
print result
等等,最后它编制了一个结果列表' 然而,我发现它需要相当长的时间,并想知道是否有办法加快这一过程。提前谢谢了。
P.S。这不是确切的代码,只是我试图实现的一个粗略的例子