ATAliya Tinapi-application-programming-interface.hashnode.dev·Jan 25 · 5 min readAPI-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...00
ATAliya Tinmydomainblog.hashnode.dev·Jan 20 · 5 min readOOP - 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...00
ATAliya Tinmydomainblog.hashnode.dev·Jan 20 · 2 min readHandlingException 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...00
ATAliya Tinmydomainblog.hashnode.dev·Jan 18 · 9 min readpythonPython 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...00
ATAliya Tinmydomainblog.hashnode.dev·Oct 31, 2023 · 1 min readList 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...00