An introduction to Django Forms

Django Forms are a way to accept user input as text, images, or files from the web frontend. The straightforward example of forms that we came across was the Django admin site’s login page. Admin site took input text “username” and an input text “password” from us.  There are two ways to use forms on […]

An introduction to Django Forms Read More »

Using the Python globals() function

Hey, folks! In this article, we talk about the Python globals() function in detail. So, let us get started. What is Python globals() function? Python globals() function enables us to access the list of all the global variables and their values in the particular code throughout the program. The globals() function represents a Python dictionary

Using the Python globals() function Read More »