Python Tutorial

Multiple File Upload in Django Tutorial

In this tutorial, you can learn to Iterate Request Files and Upload Multiple Files at once using Django in Python. This tutorial aims to provide students and beginners with a reference for learning to develop a dynamic website using Django. Here, I will be giving some steps for creating a simple web application that results in an App that allows users to upload multiple files at once.

Getting Started

Before we start the coding part, please download and install Python and Django on your local machine first.

How To Write and Call Function in Python

Functions are blocks of reusable code in Python that perform a specific task. They take inputs, process them, and return outputs. Functions can be called from anywhere in your code, allowing you to avoid duplicating the same code in multiple places. Functions make code more modular, easier to read and maintain, and allow for better code organization.

How To Write A Function

Here is an example of a simple Python function that takes in two arguments and returns their sum:

How To Declare Data Type in Python

Python has a number of built-in data types that are used to represent different kinds of data. Here are some of the main data types in Python:

  1. Integer: Integers are whole numbers, such as 1, 2, 3, -1, -2, -3, and 0. In Python, you can define an integer variable like this:

    x = 5
  2. Float: Floats are numbers with a decimal point, such as 3.14, -1.5, and 0.0. In Python, you can define a float variable like this:

Sending Mail in Python using Django Framework Tutorial

In this tutorial, we will tackle about Sending Mail in Python using Django Framework. We will be using the GMail STMP as our Email Host for sending mail. Here, you will learn the process or steps that need to be done to send mail from your Python Django App. We will be creating a simple Django Project that contains a Send Us a Message Form. Using the said form, the app will be sending an email to the site email receiver.

Gettign Started

Download Python and pip in your local machine.