Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6718477
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:58:27+00:00 2026-05-26T08:58:27+00:00

I am new to python and django and was wondering how I would go

  • 0

I am new to python and django and was wondering how I would go about making a dict of lists.

My 4 lists are;

ap = request.POST.getlist('amount_paid[]')
pd = request.POST.getlist('paid_date[]')
method = request.POST.getlist('method[]')
comments = request.POST.getlist('comments[]')

How would I make that into a dictionary I could then loop over in a django template such as;

{% for i in the_dict %}
{{i.amount_paid}}
{% endfor %}

Thanks in advance!

Update:

hmm I not sure I posted my question properly. In php, I can do the following on an array of fields:

for($i=0;$i<count($_POST['amount_paid']);$i++) {
echo $_POST['amount_paid'][$i];
echo $_POST['paid_date'][$i];
}

All the form fields are input text fields.. How would I do this in Django?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:58:27+00:00Added an answer on May 26, 2026 at 8:58 am

    Python’s dict syntax is very simple. It’s just key-value pairs inside a pair of curly braces, like this:

    the_dict = {
        'amount_paid': request.POST.getlist('amount_paid[]'),
        'paid_date': request.POST.getlist('paid_date[]'),
        'method': request.POST.getlist('method[]'),
        'comments': request.POST.getlist('comments[]'),
    }
    

    Following your update, it looks like you don’t want a dict at all but zip():

    post = request.POST
    lists = zip(post.getlist('amount_paid[]'), 
            post.getlist('paid_date[]'),
            post.getlist('method[]'),
            post.getlist('comments[]'),
            )
    for amount_paid, paid_date, method, comments in lists:
        print amount_paid
        print paid_date
        # et cetera...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my issue. I am new to python/django (about 2 months in). I
I'm really new to Python and Django. I created a class in Python that
I'm fairly new to both Django and Python. This is my first time using
I am new on Django and Python. I want to write a program with
I'm a new Python programmer who is making the leap from 2.6.4 to 3.1.1.
I'm new to python and django. Apps | Versions : Python 2.6.2 Django (working
I have new to python and django I am creating poll application and in
I'm new to python and django but wanted to start following some tutorials. I
I'm new to python and to django so this question will probably be easy
I'm new to python/django. I need to store an arbitrary number of fields in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.