Using Python dictionary by Vincent/Nov. 13, 2023, 11:40 a.m./10 minutes #dictionary A dictionary is represented as a key-value container known as a mapping in Python. In other words, a Python dictionary … Continue Reading
Exploring Django's Model-View-Template(MVT) Architecture by Vincent/Feb. 6, 2024, 9:47 a.m./5 minutes #MVT Django is an open-source, high-level web development framework. Generally, Django follows a high-level architectural pattern known as the Model-View-Template (MVT) … Continue Reading
Python Object oriented programming(OOP) by Vincent/Aug. 28, 2023, 9:32 a.m./10 minutes #classes Object-oriented programming is a structured way of representing and manipulating objects. Python supports the object-oriented programming paradigm. In object-oriented programming, … Continue Reading
Data type in Python by Vincent/Aug. 23, 2023, 5:01 p.m./10 minutes #datatype Python is a dynamically typed programming language. This simply implies that we don't need to explicitly indicate the data type … Continue Reading
How to create custom Django Middleware by Vincent/Aug. 15, 2023, 12:24 p.m./10 minutes #middleware Django middleware is a light framework that globally alters Django inputs and outputs. We discussed Django middleware and the in-built … Continue Reading