此错误的原因可能是什么?
File "/pga/mcad/install/python/python-2.7.6.9/linux/RH6/lib/python2.7/multiprocessing/pool.py", line 250, in map
return self.map_async(func, iterable, chunksize).get()
File "/pga/mcad/install/python/python-2.7.6.9/linux/RH6/lib/python2.7/multiprocessing/pool.py", line 554, in get
raise self._value
sre_constants.error: unbalanced parenthesis
我认为您的正则表达式中可能有一个括号,而前面没有转义字符。
您需要使用"\"转义括号,因为它们是保留的 正则表达式中的字符,用于检索值 在括号内。