导语:
本文主要介绍了关于python两种不同的文件流读写的相关知识,包括python json,以及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)
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Python代码常用功能,精心整理版01/02
- ♥ Python异常捕获判断字符串11/07
- ♥ sublime可以写python吗11/21
- ♥ 如何用python判断今天是星期几08/17
- ♥ 如何在python中打印字符串12/06
- ♥ 如何判断python是否已经安装11/02
内容反馈