统计python项目中的源代码行数

发布于 2024-12-07 06:14:32 字数 167 浏览 1 评论 0原文

如何计算 python 项目中包含多个子目录的项目中写入的行数。例如 dir 结构就像

A  
 \ <*some files here*>\  
  B  
   \ <*some files here*>\ ... and so on...

How do I calculate the number of lines written in a project containing multiple sub dirs in a python project. for example a dir structure is like

A  
 \ <*some files here*>\  
  B  
   \ <*some files here*>\ ... and so on...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-12-14 06:14:32

您可以在 Linux 中使用 find 实用程序。

在命令提示符下:

$ find <project_directory_path> -name '*.py' | xargs wc -l

这将为您提供项目目录中所有以 .py 结尾的文件的计数,最后是总数。 (我假设您只想要 .py 文件的数量)

如果您只想要总数而没有其他,您可以使用:

$ find <project_directory_path> -name '*.py' | xargs wc -l | tail -1

You could use the find utility in linux.

On the command prompt:

$ find <project_directory_path> -name '*.py' | xargs wc -l

This will give you the count of all files ending with .py in the project_directory and finally the total. (I am assuming you just want the count of .py files)

If you just want the total and nothing else, you could use:

$ find <project_directory_path> -name '*.py' | xargs wc -l | tail -1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文