请问perl如果想要得到python中 ``` for line in file: ``` 应该怎么写?

新手上路,请多包涵

请问perl如果想要得到python中

for line in file:

应该怎么写

阅读 2.6k
3 个回答
$file='test.txt';
open(INFO, $file) or die("Could not open  file.");
foreach $line (<INFO>)  {
    print $line;
}
close(INFO);

或者用while循环也可

open A,"$ARGV[0]" or die "$!";
while(<A>){
    chomp;
    print "$_\n";
}
close A;
use File::Slurp;
my @lines = read_file( $filepath );
for my $e ( @lines ) { ... }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
宣传栏