资源简介
使用Python处理S19文件,分析S19文件中的数据。能够很好地帮助分析S19文件
代码片段和文件信息
#S19 File Analysis
#By Quito M.
#This is a small module which can be used to analyze the structure of
#an S19 file for personal study and reference.
###############
# Functions
###############
#Returns a count for records of the S[N] type where N is any number from 0 through 9.
def s_count(record_list N):
c=0 #count var initalized at 0
r=record_list #local var for the list of records
l=len(r) #length of the record list (the S19 file)
s= “S“+str(N) #Depending on value of N a string equal to S0 S1 .. S8 or S9
for i in range(0 l-1): #iterates for each member of the list
t= s in r[i] #Is S[N] found in the current row? True if yes False if no.
if t==True:
c+=1 #increment by 1 for each record of S[N] found
return c
#
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-03-27 05:10 S19-master\
文件 6 2015-03-27 05:10 S19-master\README.md
文件 4090 2015-03-27 05:10 S19-master\S19.py
文件 595376 2015-03-27 05:10 S19-master\S19_Chart.png
文件 404 2015-03-27 05:10 S19-master\Test.s19
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论