api-application-programming-interface.hashnode.devAPI-Application Programming InterfaceAPIs are a set of rules and protocols that allow two software programs to communicate with each other and exchange data. It acts as an intermediary between the client and the server, similar to a waiter that act as a intermediater between the chef an...Jan 25·5 min read
mydomainblog.hashnode.devOOP - Object Oriented ProgrammingObject Oriented Programming is a fundamental concept in Python, empowering developers to build modular (able to break larger and complex program into smaller units), maintainable (easy to debug and fix defects with minimal efforts) and scalable (main...Jan 20·5 min read
mydomainblog.hashnode.devHandlingException Handling Error: Error can occure due to mistake in the code that prevent it from running. These can be syntax errors or indentation error or logical errors for example missing an input , unclosed bracket etc. Exception:Exceptions are unexpe...Jan 20·2 min read
mydomainblog.hashnode.devpythonPython is an interpreted language, meaning it processes code line by line, converting it into bytecode and executing it immediately. This differs from compiled languages, which read the entire code, convert it into bytecode, and execute it all at onc...Jan 18·9 min read
mydomainblog.hashnode.devList in HTML:Types of List: If we wanna make a list of something. You can do it in two possible ways. 1. Unordered list: This uses bullet points to store the list and there is no ascending or descending order. 2. Ordered list: It is used to store a list by number...Oct 31, 2023·1 min read