我有以下代码:
VisualTree
其中't'的内容为:
for x in t:
temp = x.split()
print temp[9]
a=temp[0] +" "+ temp[9]
它给了我一个输出:
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
192.168.53.9 4 65080 7043 4638 228767 0 0 2d22h 2118
192.168.53.15 4 65080 7129 4633 228767 0 0 2d22h 2119
它显示索引错误,但仍然打印'temp [9]'的值。 我的“临时”输出是:
print temp[9]
IndexError: list index out of range
State/PfxRcd
2118
2119
请帮我出去,不明白我哪里错了。谢谢!