#python3
Read more stories on Hashnode
Articles with this tag
Intro Django is an MTV framework. Instead of MVC (Model, Views, Controller), it uses Model, Template, and View. The View is a Python function that...
Prerequisites You will need the basic knowledge of Django. If you don't feel comfortable with Django yet, try this beginner-friendly tutorial. Django...
What is list comprehension List comprehension is a concise way used instead of for-loop when you want to create a new list based on another iterable...
Requirements Basic knowledge of Python Basic understanding of Django framework REST API Rest API is a term concatenated from 2...
Intro When you start learning you create an application, maybe even deploy it on some free server, but that's it. There is no unsatisfied customer...
Introduction Regular Expression or RegEx for short is a tiny language that allows you to search matches in strings. In Python, it is accessible...