pytoh 小程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytoh 小程序相关的知识,希望对你有一定的参考价值。

这是在一个文件夹下将符合条件的文件中,第一列是相同的,对每个文件中第二列的数求和,输出为一个txt文件,文件内容格式为:第一列的每个数对应【这个所有符合条件的文件中第一列这个数对应的第二个数的】求和

#!/usr/bin/env python 
# -*- coding: utf-8 -*-
import time,glob

date= time.strftime("%Y%m%d", time.localtime())
#linux 
filesRead = r"../result/wakeup_fa_1}/*.stat"
fileWrite = r"../result/wakeup_fa_1/count.txt" 

if __name__ == __main__: 
        list = glob.glob(filesRead) 
#    print list 
tmp=0   
out=open(fileWrite,w) 
out.write(The miswakeup in all the scenarios) 
out.write(\n) 

for i in list: 
        f=open(i)
        fr=f.readlines()
        l=len(fr)      
 
for j in range(len(fr)):
        sum=0
        for i in list:
                fr=open(i).readlines()
                sum+=int(fr[j].split()[1])
        tmp=sum
        out.write(fr[j].split()[0])
        out.write(  )
        out.write(str(tmp))
        out.write(\n)
out.close()
  

 

以上是关于pytoh 小程序的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段分享

小程序各种功能代码片段整理---持续更新

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

提效小技巧——记录那些不常用的代码片段

Android小部件,启动一个片段?

vscode 开发微信小程序环境配置