统计python项目中的源代码行数
如何计算 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Linux 中使用 find 实用程序。
在命令提示符下:
这将为您提供项目目录中所有以 .py 结尾的文件的计数,最后是总数。 (我假设您只想要 .py 文件的数量)
如果您只想要总数而没有其他,您可以使用:
You could use the find utility in linux.
On the command prompt:
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: