Python 🐍

How to Make a Multiplication Table in Python

A multiplication table for a number displays all the number’s multiples and their corresponding factors; usually in the ascending order of their greatness. We normally do this manually by writing down a set of ordered numbers and multiplying each of them with the number concerned then writing down the product we get next to them. […]

How To Add favicon to Django project

A favicon is that small icon that appears at the top of a tab in a browser. A favicon can make your site look professional almost instantly. In this post, I’ll show you how to add a favicon to your Django project to make it look a bit more professional. Below is an image of […]

Django Collectstatic: Serve Django Static Files for Local & Production Development

This post is going to cover how to configure static files for local and production development for your Django project. We are going to look at what static files are, what the collectstatic command is and how it works, and finally how to serve the static files and load them in your templates. What are […]

Django Imagefield: How to Upload Images in Django

Uploading images with Django is straightforward but contains a lot of steps. This post is going to show you how to use ImageField to upload images in Django. This post is divided into 4 sections: This post assumes that you have already created a Django project and you’re ready to add image uploading functionality to […]

3 Ways to Reset Django Admin/Superuser Password

If you have forgotten the password for your Django project’s Admin or Superuser, you do not have to create another superuser. As long as you remember the Superuser’s username or you are still logged in to the admin panel, then you can easily reset the Django admin’s password using the methods that I’ll share in […]

2 Ways to Configure your Django Project Templates.

Django is built on an architecture known as MVT– Model View Template. The Template part is equally important as the rest of the other parts because there is no website without a front end. The front end is important because users interact with our Django app through it. One question that most Django beginners often […]

How to include app URLs to project URLs in Django

If you create a Django app using the startapp command, you’ll notice that the app folder created does not include the urls.py file. This does not mean that we have put all the routes of our Django website in the urls.py of our project folder. If we had to do that, our project will be […]

How to Multiply Integers with Floating Point Numbers in Python

To multiply integers with floating point numbers in Python, we use the multiplication operator (*). If the multiplication operator (*) appears between a number of type int and of type float or vice versa, then the numbers will multiply each other. The product of an int and a float is a float. If you want […]

How to Multiply in Python

In mathematics, we use the symbol Γ— to multiply numbers. It is the standard symbol for multiplication and it is called the multiplication sign. When we put the Python programming language into the picture, the symbol disappears but the multiplication fundamentals remain the same. In this post, you’ll learn how to multiply in Python. To […]

Scroll to top