Python编程模块常用的包括什么,怎样实现
Admin 2022-07-20 群英技术资讯 295 次浏览
使用try进行异常发现,使用while检测文件末尾进行读取
file_to_read = raw_input("Enter file name of tests (empty string to end program):") try: infile = open(file_to_read, 'r') while file_to_read != " ": file_to_write = raw_input("Enter output file name (.csv will be appended to it):") file_to_write = file_to_write + ".csv" outfile = open(file_to_write, "w") readings = (infile.readline()) print readings while readings != 0: global count readings = int(readings) minimum = (infile.readline()) maximum = (infile.readline())
使用for遍历读取的每一行,进行一次性的读取和输入
下面调用的程序读取的数据是
result = list() with open('../test/parameter.txt') as f: for line in f.readlines(): temp = list() # 逐个遍历对应每一行元素,将之转为对应的数据 b = line.strip(",][").split(',') if(len(b) >= 5): b.pop() for a in b: a = a.replace('[','').replace(']','') temp.append(float(a)) result.append(temp) #print("中途打印的temp是",temp) #print("加入到result中的结果是",result)
删除字符串首尾的多余字符串strip()
# 删除字符串中多余字符 def string_remove(): str1 = ' abc \n' print str1.strip() # abc str2 = '----abcdf++++' print str2.strip('-+') # abcdf
replace函数,删除字符串中某一个所有的字符串
ss = 'old old string' ret = ss.replace('old', 'new', 1) print(ret)
sub函数,同时删除多个字符串,这里使用了正则表达式
str2 = '\nabc\nwrt22\t666\t' # 删除字符串中的所有\n,\t import re print(re.sub('[\n\t]','',str2)) # abcwrt22666
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了Python的数据结构以及相关的示例操作,对于新手学习Python具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
Pandas是Python语言的一个扩展程序库,是用于数据分析的。一些朋友可能对Pandas有一定的了解,文本主要介绍的是关于pandas提取单元格的值的操作,以下是示例,感兴趣朋友可以参考学习。
使用pyplot的 bar)函数可以快速绘制柱形图或堆积柱形图。bar)函数的语法格式如下所示
本文主要介绍Python列表复制的内容,而Python中列表的复制有直接赋值、浅复制和深复制这几种。下面我们来分别了解一下几种情况的使用和区别是什么。
本篇文章给大家带来了关于Python的相关知识,主要介绍了python文件数据分析治理提取,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008