Django List Print All Elements Except Last Example

Published On: 22/08/2022 | Category: Django


Hi Dev,

This article goes in detailed on django list get all elements except last. you will learn django list get all but not last element. you can see django all items in list except last. We will look at example of python all elements except last. You just need to some step to done django print all elements in list except last.

There are many ways to get all elements except the last element in list django. i will give you two examples using for loop with list[:-1] to except last element from list. so let's see the below examples.

You can use these examples with django3 (Django 3) version.

let's see below a simple example with output:

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

def index(request):

    myList = [1, 2, 3, 4, 5]
  
    # Get All Value Except Last One
    myList = myList[:-1]
      
    print(myList)
    
    return HttpResponse(myList)
Output
[1, 2, 3, 4]
Example : 2 views.py
from django.shortcuts import render
from django.http import HttpResponse

def index(request):
    
    myList = ["One", "Two", "Three", "Four", "Five"]
  
    # Get All Value Except Last One
    for listElem in myList[:-1]:
        print(listElem)

    return HttpResponse(listElem)
Output
One
Two
Three
Four

I Hope It will help you....