Nov 3, 20211 min readWtf PythonPython can be weird. Let’s explore some strange examples. Example 1 - 8 bit issue? >>> a = 256 >>> b = 256 >>> a is b True >>> a = 257...
Aug 26, 20216 min readThe Python requests libraryIf you want to be a network engineer with programmability skills you need to be comfortable working with APIs. APIs make automation...