#python
Read more stories on Hashnode
Articles with this tag
Python uses several special variables, often referred to as "dunder" (double underscore) variables or "magic methods" in the context of OOP, that have...
In Python, the main difference between class attributes and instance attributes involves the level at which these attributes are declared and how they...
OOP is a way of structuring programs (programming paradigm) around objects. An object is a self-contained entity that groups data (attributes or...
In Python, first-class objects (also known as first-class citizens) refer to entities that can be dynamically created, destroyed, passed to a...
Flask applications are WSGI (Web Server Gateway Interface) applications. WSGI is essentially a specification that defines how web servers interact...
Cross-Origin Resource Sharing (CORS) is a security feature implemented in web browsers to control how web pages in one domain can make requests to...