Maxat Akbanov's blog
Maxat Akbanov's blog
Follow
Follow
homeAWSkubernetesAnsiblebashSQLGo
Series

python


Articles in this series

Python 101: Special variables

Apr 16, 20243 min read

Python uses several special variables, often referred to as "dunder" (double underscore) variables or "magic methods" in the context of OOP, that have...

Python 101: Special variables

Python OOP 101: Class vs Instance attributes

Apr 14, 20243 min read

In Python, the main difference between class attributes and instance attributes involves the level at which these attributes are declared and how they...

Python OOP 101: Class vs Instance attributes

Basics of Object-Oriented Programming (OOP) in Python

Apr 9, 20243 min read

OOP is a way of structuring programs (programming paradigm) around objects. An object is a self-contained entity that groups data (attributes or...

Basics of Object-Oriented Programming (OOP) in Python

First-Class Objects in Python

Mar 19, 20242 min read

In Python, first-class objects (also known as first-class citizens) refer to entities that can be dynamically created, destroyed, passed to a...

First-Class Objects in Python

What is Web Server Gateway Interface (WSGI) in Flask?

Mar 17, 20244 min read

Flask applications are WSGI (Web Server Gateway Interface) applications. WSGI is essentially a specification that defines how web servers interact...

What is Web Server Gateway Interface (WSGI) in Flask?

Expressions vs Statements in Python

Dec 14, 20238 min read

In Python, the terms "expression" and "statement" have distinct meanings, and understanding the difference between them is important for writing...

Expressions vs Statements in Python