1

如果我想将以下 awk 代码作为 python 代码执行,那么最好的方法是什么?如果我要使用列表,我将如何填充列表,以便最后我可以将字段 1 和 3 打印回输出列表并将其写入文件。

谢谢格雷厄姆

AWK 

#!/bin/awk -f
BEGIN {
        FS=":";
}
{
                print $1,$3
        }

测试文件

Error code 27: This is error code 27:Ihave no comment here
Error code 24: This is error code 27:Ihave no comment here
Error code 27: This is error code 27:Ihave no comment here
Error code 26: This is error code 27:Ihave no comment here
Error code 27: This is error code 27:Ihave no comment here
Error code 29: This is error code 27:Ihave no comment here
Error code 01: This is error code 27:Ihave no comment here
4

1 回答 1

1
f = open(file_name)
for line in f:
  s = line.split(':')
  print s[0],s[2]
于 2012-08-01T12:33:33.127 回答