作者:小亲-火星小地球义 | 来源:互联网 | 2023-09-15 13:01
近两个月白天都在加班,晚上在恶补深度学习的知识以及学习tensorflow,后面学着学着感觉paddlepaddle框架(百度继Echarts外又一良心巨作!)也是不错的选择,有很详细的说明文档
近两个月白天都在加班,晚上在恶补深度学习的知识以及学习tensorflow,后面学着学着感觉paddlepaddle框架(百度继Echarts外又一良心巨作!)也是不错的选择,有很详细的说明文档,对深度学习神经网络感兴趣的同学可以作为入门的选择,个人还未尝试,后期有时间可能会针对paddlepaddle进行学习并写些心得。
好了言归正传,5月低的时候临近毕业,突发奇想想知道知道大二开始捡起python到现在一共写了多少行代码,也算是给自己一个评定吧。
原理很简单,利用文件夹遍历方式获取.py文件,读取py文件内的行数。
import os
def fw(path):
fileArray = []
for root, dirs, files in os.walk(path):
for fn in files:
if (fn.split('.'))[-1] == 'py' and r'D:\Sofrware\Python35' not in root:
file = str(root+'\\'+fn)
fileArray.append(file)
return fileArray
def ifcode(path):
files = fw(path)
return files
def line_counter(file):
counter = 0
try:
with open(file, 'rb') as f:
cOntent= f.readlines()
cOntent= list(filter(lambda line: line != b'\r\n', content))
counter = len(content)
except Exception as e:
counter = 0
pass
else:
pass
finally:
pass
return counter
from datetime import datetime
def main():
path = r'D:\\'
counter = 0
files = ifcode(path)
i = 0
for file in files:
i += 1
counter += line_counter(file)
if counter > 10*i:
print('got %s lines.' % counter)
print('u have done %d python files.' % len(files))
print('u have done %d lines code, good luck Alan...' % counter)
if __name__ == '__main__':
t_s = datetime.now()
main()
t_e = datetime.now()
print('[finished in %s]' % (t_e-t_s))
结果:
4487112行代码……