Skip to content

Not able to print simple fibonacci series in python?

Trying to print simple fibonacci series in Komodo using Python. but not getting any o/p Can someone explain me the mistake. I’m starting to learn Python. please let me know from where to start. Any link to full python course. Answer you didn’t call your function. Just call it and also remove param…

How to read pcapng (wireshark) files in Python?

I have a capture of some TCP packets in pcapng format and I’d like to open it in python to inspect the TCP payloads with address 192.168.1.198. I’ve only found this library: https://python-pcapng.readthedocs.io/en/latest/api/blocks.html but it does not support inspecting TCP payloads. Is there an …

string.replace() outputs me an error when defining it

Im getting data from an API. Then i want to replace the value in the string from “True” to “Online”. The error i get from replace() is AttributeError: ‘bool’ object has no attribute ‘replace’ I want to implement a Teamspeak Online Checker by getting the value if…