列表索引从文件读取时超出范围

时间:2018-01-18 09:01:47

标签: python

我正在编写一个测验,我正在尝试从这个文件中读取第2行,读取第一行有效但第二行给出了一个错误“IndexError:list index out of range” 以下是给我错误的代码部分:

<?php

$test = file('test.txt'); // you can add your file url here

echo "<pre/>";print_r($test);// initial array

foreach($test as &$te){
     $new_array = explode(',',$te);
     unset($new_array[0]);
     $te = array_values($new_array);
}

echo "<pre/>";print_r($test); // modified and desired array

哦,这就是txt文件所说的内容:

What is the formula for PROFIT?1
test2

0 个答案:

没有答案