String Slicing technique in python by Vincent/July 17, 2022, 10:01 a.m./6 minutes #list #function A string is a data type in Python that represents a sequence of characters or text. The string in Python … Continue Reading
Python List by Vincent/July 17, 2022, 8:32 a.m./5 minutes #list A list is a collection of items stored in a single variable. A list contains numerous items that are related … Continue Reading
How to setup PostgreSQL with Django by Vincent/July 17, 2022, 6:30 a.m./10 minutes #Database By default, Django comes with a lightweight SQLite database system. Django describes the SQLite database as a database used just … Continue Reading
Abstract model in Django by Vincent/July 15, 2022, 2:36 p.m./5 minutes #Model The basis of an abstract model is to avoid code repetition. Django development follows the DRY (Don't repeat yourself) principle, … Continue Reading
Creating forms with Django by Vincent/June 11, 2022, 6:25 p.m./10 minutes #forms Most websites require a form. Unless you are developing a website or application that only publishes articles and does not … Continue Reading