I'm reading a pcap file using the rdpcap function:
s = rdpcap(pcap)
I'd like to know how to reverse s: it should be a list, but I tried with:
rev_s = s.reverse()
and it doesn't work: it gives me the SyntaxError: invalid syntax error.
Can anyone help me, please?
Thanks
type(s)return? – Jan-Philip Gehrcke May 23 '12 at 8:46<type 'instance'>. I found a syntax error, but now, it gives me this error: Traceback (most recent call last): File "myscript.py", line 100, in myfunction for pkt in s.reverse(): TypeError: 'NoneType' object is not iterable I know thatsis notNone. – auino May 23 '12 at 8:56s = Nonehence the TypeError you're getting. Ifswas a string you could use.reverse()or[::-1]to step it backwards. I'd recommend loading up a file that contains data, then doing adir(var_name)on it to see what functions it supports. – Christian Witts May 23 '12 at 9:08