Django List Remove Element by Index Example

Published On: 18/07/2022 | Category: Django Python

This tutorial will give you example of django list remove element by index. This article goes in detailed on python list remove element example. We will use python list delete element index. you can see django array remove element by index. follow bellow step for how to remove list element by index in python.

In this tuts, I will give you two examples. one using "del" in django and another using "pop" function of array. you need to pass index key and it will remove element from python list. so let's see below examples.

You can use these examples with python3 (Python 3) version.

Let's see bellow example here you will learn python django array remove element by index.

Example : 1 views.py
from django.shortcuts import render
from django.http import HttpResponse

def index(request):

    myArray = [10, 20, 30, 40, 50, 60]

    # Remove Element in Array
    del myArray[3]

    print(myArray)

    return HttpResponse('')
Output
[10, 20, 30, 50, 60]
Example : 2 views.py
from django.shortcuts import render
from django.http import HttpResponse

def index(request):

    myArray = [10, 20, 30, 40, 50, 60]
  
    # Remove Element in Array
    myArray.pop(3)
      
    print(myArray)
    
    return HttpResponse('')
Output
[10, 20, 30, 50, 60]

I Hope It will help you....