简体   繁体   English

在 csv 中查找并在 python 中读取

[英]Find in csv and read in python

I have this example of csv file:我有这个 csv 文件的例子:

Sensor1;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;;;;o
o;x;;;;;;x;;;;o
o;x;x;x;x;;;x;x;x;;o
Sensor2;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;x;x;x;o
o;x;;;;;;;;;x;o
o;x;x;x;x;;;;;x;x;o
Sensor3;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;x;x;x;o
o;x;;;;;;;;;x;o
o;x;x;x;x;;;x;x;x;x;o

How can I find a name (Sensor1, ...) in this file and read the following lines?如何在此文件中找到名称 (Sensor1, ...) 并阅读以下行? I have the number of lines to read, in this case 4. What the code should return to you is this:我有要阅读的行数,在这种情况下为 4。代码应该返回给您的是:

o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;;;;o
o;x;;;;;;x;;;;o
o;x;x;x;x;;;x;x;x;;o

(this in the case you choose the sensor 1, I already have this code, I just need the code that reads the lines after the name, I don't know how to do it) (这个在你选择传感器1的情况下,我已经有了这个代码,我只需要读取名称后面的行的代码,我不知道该怎么做)

The code cannot have imports代码不能有导入

I have this example of csv file:我有这个 csv 文件的例子:

Sensor1;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;;;;o
o;x;;;;;;x;;;;o
o;x;x;x;x;;;x;x;x;;o
Sensor2;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;x;x;x;o
o;x;;;;;;;;;x;o
o;x;x;x;x;;;;;x;x;o
Sensor3;;;;;;;;;;;
o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;x;x;x;o
o;x;;;;;;;;;x;o
o;x;x;x;x;;;x;x;x;x;o

How can I find a name (Sensor1, ...) in this file and read the following lines?如何在此文件中找到名称 (Sensor1, ...) 并阅读以下行? I have the number of lines to read, in this case 4. What the code should return to you is this:我有要阅读的行数,在这种情况下为 4。代码应该返回给您的是:

o;o;o;o;o;o;o;o;o;o;o;o
o;x;x;x;x;x;x;x;;;;o
o;x;;;;;;x;;;;o
o;x;x;x;x;;;x;x;x;;o

(this in the case you choose the sensor 1, I already have this code, I just need the code that reads the lines after the name, I don't know how to do it) (这个在你选择传感器1的情况下,我已经有了这个代码,我只需要读取名称后面的行的代码,我不知道该怎么做)

The code cannot have imports代码不能有导入

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM