Objects and Functions
Now for some fun. Everything in Python, from Functions, Classes and strings are objects in Python. This means, a few fun things: They all have types, can be passed as function arguments and can have methods and properties. You can easily override functions in objects, where the function doesn’t quite work how you need/want it […]