既存の「最も有用なC/C ++スニペットは何ですか」の精神で-スレッド:
使用している(多くの場合)、StackOverlowコミュニティと共有したい短い単機能のPythonスニペットがありますか?エントリを小さく(25行未満でしょうか?)、投稿ごとに1つの例のみを示してください。
Pythonプロジェクトでsloc(コードのソース行)をカウントするために時々使用する短いスニペットから始めます。
# prints recursive count of lines of python source code from current directory
# includes an ignore_list. also prints total sloc
import os
cur_path = os.getcwd()
ignore_set = set(["__init__.py", "count_sourcelines.py"])
loclist = []
for pydir, _, pyfiles in os.walk(cur_path):
for pyfile in pyfiles:
if pyfile.endswith(".py") and pyfile not in ignore_set:
totalpath = os.path.join(pydir, pyfile)
loclist.append( ( len(open(totalpath, "r").read().splitlines()),
totalpath.split(cur_path)[1]) )
for linenumbercount, filename in loclist:
print "%05d lines in %s" % (linenumbercount, filename)
print "\nTotal: %s lines (%s)" %(sum([x[0] for x in loclist]), cur_path)