テキスト解析をしたくない場合は、すべてのファイルをインポートしてa_var変数にアクセスしてみてください。これを可能にするために、あなたがそのメソッドを使用しなかった場合、まだパースを提出され、最速の方法を
if __name__ == '__main__':
<code>
「有名」を使用してヨールファイルを書かれているはずです。私は次のようなものを使用します:
import glob
import re
results = []
avar_regex = re.compile(r'\s*a_var\s*=\s*(.*)\s*')
# to define the regex it would be important to know a little bit
#+more about the variable you are looking for.
# glob can be used to create a list with all the file names
for f in glob.glob('a_dir/*.py'):
with open(f) as fc:
while l in fc:
match = avar_regex.match(l)
if match:
results.append(match.group(1))
break
あなたはどのようなアプローチを試してみましたか? [glob](https://docs.python.org/3/library/glob.html)モジュールを試してください。 –
お願いします、私は私の質問に答えます。 –