python 循环读取表格每次读入N行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 循环读取表格每次读入N行相关的知识,希望对你有一定的参考价值。
参考技术A from itertools import isliceN = 1000000 #每次读入100w行
with open( 'your_File_path','r') as f:
while True:
next_n_lines = list(islice(f,N))
if not next_n_lines: break
#print(str(next_n_lines))
#将每次读入的n行记录转换成DataFrame处理
next_n_lines="".join(next_n_lines)
TESTDATA = StringIO(next_n_lines)
df = pd.read_csv(TESTDATA, sep="\t",header=None,names=['col_1','col_2','col_Name'],dtype=str)
print(df)
time.sleep(1)
怎么使用C语言读取properties配置文件
参考技术A 用C语言读取properties配置文件的方法:1、找到配置路径下的properties文件
2、按行读取文件内容
具体实现代码如下:
//定义读入的行数组,1024行
char
line[1024];
//存放配置项数组setting
int
setting[N],i
=
0;
//开始循环读入
while(fgets(fp,line,1024)
!=
NULL)
//读入配置的值给line变量
fscanf(line,"setting%*d
=
%d",&setting[i++]);
以上是关于python 循环读取表格每次读入N行的主要内容,如果未能解决你的问题,请参考以下文章