【说站】python两种不同的文件流读写
2024-12-31
17
python两种不同的文件流读写
1、使用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())
2、使用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)
以上就是python两种不同的文件流读写,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:3天前赞一波!
相关文章
- 【说站】python归并排序和快速排序比较
- 【说站】python归并排序的基本思路
- 【说站】python Tkinter模块是什么
- 【说站】BigDecimal值在java比较的两种方法
- 【说站】python快速排序的运作过程
- 【说站】python异常是什么?如何解决?
- 【说站】python中mock有哪些统计的方法
- 【说站】python中mock的断言使用
- 【说站】python读取txt文件
- .net 通过 HttpClient 下载文件同时报告进度的方法
- 【说站】python实例创建销毁的函数整理
- 【说站】python如何在二维图像上进行卷积
- 【说站】python轮盘赌算法如何使用
- 【说站】python三种属性管理魔法函数
- 【说站】python集合魔法函数有哪些
- 【说站】python中高斯模糊是什么
- 【说站】python删除str中特定字符的方法
- 【说站】python如何将实例用作属性
- 【说站】python从键盘输入若干个整数
- 【说站】python可变数据类型和不可变数据类型的区别
文章评论
评论问答